aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-04-08 01:15:18 +0000
committerChris Lattner <sabre@nondot.org>2006-04-08 01:15:18 +0000
commit9fc18d24ae525a0047718d28e7a8735e8582ddb2 (patch)
tree7ff605dec90b8d70c174efac5c18327a8ff11b70 /include/llvm/Support
parent372db540d94bd8604a66e99abbd6c4eb065bad16 (diff)
downloadexternal_llvm-9fc18d24ae525a0047718d28e7a8735e8582ddb2.zip
external_llvm-9fc18d24ae525a0047718d28e7a8735e8582ddb2.tar.gz
external_llvm-9fc18d24ae525a0047718d28e7a8735e8582ddb2.tar.bz2
Add a new shufflevector instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/InstVisitor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h
index e48b3ff..da9144a 100644
--- a/include/llvm/Support/InstVisitor.h
+++ b/include/llvm/Support/InstVisitor.h
@@ -177,6 +177,7 @@ public:
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