[llvm-commits] CVS: llvm/include/llvm/Support/InstVisitor.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Apr 7 18:15:34 PDT 2006
Changes in directory llvm/include/llvm/Support:
InstVisitor.h updated: 1.38 -> 1.39
---
Log message:
Add a new shufflevector instruction
---
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.38 llvm/include/llvm/Support/InstVisitor.h:1.39
--- llvm/include/llvm/Support/InstVisitor.h:1.38 Tue Jan 17 14:06:13 2006
+++ llvm/include/llvm/Support/InstVisitor.h Fri Apr 7 20:15:18 2006
@@ -177,6 +177,7 @@
RetTy visitVAArgInst(VAArgInst &I) { DELEGATE(Instruction); }
RetTy visitExtractElementInst(ExtractElementInst &I) { DELEGATE(Instruction); }
RetTy visitInsertElementInst(InsertElementInst &I) { DELEGATE(Instruction); }
+ RetTy visitShuffleVectorInst(ShuffleVectorInst &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