add support for the unwind inst

llvm-svn: 8406
This commit is contained in:
Chris Lattner 2003-09-08 18:54:16 +00:00
parent fb821f627a
commit 14b8023555
1 changed files with 1 additions and 0 deletions

View File

@ -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);}