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