mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-23 12:45:47 +00:00
add support for the unwind inst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8406 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
47f3a942be
commit
3cd5c1d7f1
@ -156,6 +156,7 @@ struct InstVisitor {
|
|||||||
RetTy visitBranchInst(BranchInst &I) { DELEGATE(TerminatorInst);}
|
RetTy visitBranchInst(BranchInst &I) { DELEGATE(TerminatorInst);}
|
||||||
RetTy visitSwitchInst(SwitchInst &I) { DELEGATE(TerminatorInst);}
|
RetTy visitSwitchInst(SwitchInst &I) { DELEGATE(TerminatorInst);}
|
||||||
RetTy visitInvokeInst(InvokeInst &I) { DELEGATE(TerminatorInst);}
|
RetTy visitInvokeInst(InvokeInst &I) { DELEGATE(TerminatorInst);}
|
||||||
|
RetTy visitUnwindInst(UnwindInst &I) { DELEGATE(TerminatorInst);}
|
||||||
RetTy visitSetCondInst(SetCondInst &I) { DELEGATE(BinaryOperator);}
|
RetTy visitSetCondInst(SetCondInst &I) { DELEGATE(BinaryOperator);}
|
||||||
RetTy visitMallocInst(MallocInst &I) { DELEGATE(AllocationInst);}
|
RetTy visitMallocInst(MallocInst &I) { DELEGATE(AllocationInst);}
|
||||||
RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(AllocationInst);}
|
RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(AllocationInst);}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user