[llvm-commits] CVS: llvm/include/llvm/Instructions.h

Chris Lattner sabre at nondot.org
Wed Jan 31 11:47:37 PST 2007



Changes in directory llvm/include/llvm:

Instructions.h updated: 1.51 -> 1.52
---
Log message:

implement the new GEP instruction ctors.


---
Diffs of the changes:  (+1 -1)

 Instructions.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Instructions.h
diff -u llvm/include/llvm/Instructions.h:1.51 llvm/include/llvm/Instructions.h:1.52
--- llvm/include/llvm/Instructions.h:1.51	Tue Jan 30 22:39:29 2007
+++ llvm/include/llvm/Instructions.h	Wed Jan 31 13:47:18 2007
@@ -336,7 +336,7 @@
     for (unsigned i = 0, E = NumOperands; i != E; ++i)
       OL[i].init(GEPIOL[i], this);
   }
-  void init(Value *Ptr, const std::vector<Value*> &Idx);
+  void init(Value *Ptr, Value* const *Idx, unsigned NumIdx);
   void init(Value *Ptr, Value *Idx0, Value *Idx1);
   void init(Value *Ptr, Value *Idx);
 public:






More information about the llvm-commits mailing list