summaryrefslogtreecommitdiffstats
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
commit26cca63a7e205218909a5cb1801702211f76fe78 (patch)
tree72614da59672e168db86856efdaf7699bb56d574
parent5dec674075052055d8ea4e06104e60c97e433ca8 (diff)
downloadbcm5719-llvm-26cca63a7e205218909a5cb1801702211f76fe78.tar.gz
bcm5719-llvm-26cca63a7e205218909a5cb1801702211f76fe78.zip
Add the visitSelectInst visitor method
llvm-svn: 12312
-rw-r--r--llvm/include/llvm/Support/InstVisitor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/Support/InstVisitor.h b/llvm/include/llvm/Support/InstVisitor.h
index b3fc893df63..a1c0085443b 100644
--- a/llvm/include/llvm/Support/InstVisitor.h
+++ b/llvm/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); }
OpenPOWER on IntegriCloud