mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 02:33:33 +00:00
update these
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41565 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3e1a7aef17
commit
d80fb8b366
@ -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…
x
Reference in New Issue
Block a user