forked from OSchip/llvm-project
parent
c92bc4ce2f
commit
8d22b4e18a
|
|
@ -4549,7 +4549,7 @@ case 272:
|
|||
}
|
||||
|
||||
// Create the InvokeInst
|
||||
InvokeInst *II = new InvokeInst(V, Normal, Except, &Args[0], Args.size());
|
||||
InvokeInst *II = new InvokeInst(V, Normal, Except, Args.begin(), Args.end());
|
||||
II->setCallingConv(yyvsp[-12].UIntVal);
|
||||
yyval.TermInstVal = II;
|
||||
delete yyvsp[-8].ValueRefList;
|
||||
|
|
|
|||
|
|
@ -2652,7 +2652,7 @@ BBTerminatorInst : RET ResolvedVal { // Return with a result...
|
|||
}
|
||||
|
||||
// Create the InvokeInst
|
||||
InvokeInst *II = new InvokeInst(V, Normal, Except, &Args[0], Args.size());
|
||||
InvokeInst *II = new InvokeInst(V, Normal, Except, Args.begin(), Args.end());
|
||||
II->setCallingConv($2);
|
||||
$$ = II;
|
||||
delete $6;
|
||||
|
|
|
|||
Loading…
Reference in New Issue