add support for the unwind inst
authorChris Lattner <sabre@nondot.org>
Mon, 8 Sep 2003 18:54:16 +0000 (18:54 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 8 Sep 2003 18:54:16 +0000 (18:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8406 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/InstVisitor.h

index a1a53280d4efde49c72cb4262860b833bd0db2df..758cc99064b767e601569654da2f1f5a006e69d8 100644 (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);}