[llvm-commits] CVS: llvm/include/llvm/Support/InstVisitor.h
Robert L. Bocchino Jr.
bocchino at persephone.cs.uiuc.edu
Tue Jan 10 11:06:26 PST 2006
Changes in directory llvm/include/llvm/Support:
InstVisitor.h updated: 1.36 -> 1.37
---
Log message:
Added an instruction and constant expression for the extractelement
operation.
---
Diffs of the changes: (+1 -0)
InstVisitor.h | 1 +
1 files changed, 1 insertion(+)
Index: llvm/include/llvm/Support/InstVisitor.h
diff -u llvm/include/llvm/Support/InstVisitor.h:1.36 llvm/include/llvm/Support/InstVisitor.h:1.37
--- llvm/include/llvm/Support/InstVisitor.h:1.36 Sat Jun 18 13:31:30 2005
+++ llvm/include/llvm/Support/InstVisitor.h Tue Jan 10 13:04:13 2006
@@ -175,6 +175,7 @@
RetTy visitCallInst(CallInst &I) { DELEGATE(Instruction); }
RetTy visitShiftInst(ShiftInst &I) { DELEGATE(Instruction); }
RetTy visitVAArgInst(VAArgInst &I) { DELEGATE(Instruction); }
+ RetTy visitExtractElementInst(ExtractElementInst &I) { DELEGATE(Instruction); }
// Next level propagators... if the user does not overload a specific
// instruction type, they can overload one of these to get the whole class
More information about the llvm-commits
mailing list