aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-12 05:51:22 +0000
committerChris Lattner <sabre@nondot.org>2004-03-12 05:51:22 +0000
commit57b25973d68ac8b26e0d2ad44769d77dd3e8efc5 (patch)
treed872870a95206c9e400f9fa7c205fd76532db479 /include
parent4e734dde5475a8f173b988694385869d8c353361 (diff)
downloadexternal_llvm-57b25973d68ac8b26e0d2ad44769d77dd3e8efc5.zip
external_llvm-57b25973d68ac8b26e0d2ad44769d77dd3e8efc5.tar.gz
external_llvm-57b25973d68ac8b26e0d2ad44769d77dd3e8efc5.tar.bz2
Add the visitSelectInst visitor method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 b3fc893..a1c0085 100644
--- a/include/llvm/Support/InstVisitor.h
+++ b/include/llvm/Support/InstVisitor.h
@@ -163,6 +163,7 @@ struct InstVisitor {
RetTy visitGetElementPtrInst(GetElementPtrInst &I){ DELEGATE(Instruction); }
RetTy visitPHINode(PHINode &I) { DELEGATE(Instruction); }
RetTy visitCastInst(CastInst &I) { DELEGATE(Instruction); }
+ RetTy visitSelectInst(SelectInst &I) { DELEGATE(Instruction); }
RetTy visitCallInst(CallInst &I) { DELEGATE(Instruction); }
RetTy visitShiftInst(ShiftInst &I) { DELEGATE(Instruction); }
RetTy visitVANextInst(VANextInst &I) { DELEGATE(Instruction); }