aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/InstVisitor.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-02-19 22:15:16 +0000
committerDevang Patel <dpatel@apple.com>2008-02-19 22:15:16 +0000
commitd081ef080a26343b4314b9a1e08d4b3136cd5dd8 (patch)
tree3b180bf2e6550fdd00ee45fefe851cdc488e4242 /include/llvm/Support/InstVisitor.h
parentd915ee538e959bcc5b1e1be525fd35b54fd0b965 (diff)
downloadexternal_llvm-d081ef080a26343b4314b9a1e08d4b3136cd5dd8.zip
external_llvm-d081ef080a26343b4314b9a1e08d4b3136cd5dd8.tar.gz
external_llvm-d081ef080a26343b4314b9a1e08d4b3136cd5dd8.tar.bz2
Add GetResultInst. First step for multiple return value support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47348 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/InstVisitor.h')
-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 ba98cd5..720b32d 100644
--- a/include/llvm/Support/InstVisitor.h
+++ b/include/llvm/Support/InstVisitor.h
@@ -194,6 +194,7 @@ public:
RetTy visitExtractElementInst(ExtractElementInst &I) { DELEGATE(Instruction);}
RetTy visitInsertElementInst(InsertElementInst &I) { DELEGATE(Instruction); }
RetTy visitShuffleVectorInst(ShuffleVectorInst &I) { DELEGATE(Instruction); }
+ RetTy visitGetResultInst(GetResultInst &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