aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-08 18:54:16 +0000
committerChris Lattner <sabre@nondot.org>2003-09-08 18:54:16 +0000
commit3cd5c1d7f19c83e21a34ef1373feb8933e26c4d8 (patch)
tree19fb50b384e8db8f56f51c188f9ee630ce5154d6 /include
parent47f3a942bef7a7325cfc62908927828a6e3e037f (diff)
downloadexternal_llvm-3cd5c1d7f19c83e21a34ef1373feb8933e26c4d8.zip
external_llvm-3cd5c1d7f19c83e21a34ef1373feb8933e26c4d8.tar.gz
external_llvm-3cd5c1d7f19c83e21a34ef1373feb8933e26c4d8.tar.bz2
add support for the unwind inst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8406 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 a1a5328..758cc99 100644
--- a/include/llvm/Support/InstVisitor.h
+++ b/include/llvm/Support/InstVisitor.h
@@ -156,6 +156,7 @@ struct InstVisitor {
RetTy visitBranchInst(BranchInst &I) { DELEGATE(TerminatorInst);}
RetTy visitSwitchInst(SwitchInst &I) { DELEGATE(TerminatorInst);}
RetTy visitInvokeInst(InvokeInst &I) { DELEGATE(TerminatorInst);}
+ RetTy visitUnwindInst(UnwindInst &I) { DELEGATE(TerminatorInst);}
RetTy visitSetCondInst(SetCondInst &I) { DELEGATE(BinaryOperator);}
RetTy visitMallocInst(MallocInst &I) { DELEGATE(AllocationInst);}
RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(AllocationInst);}