mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
Merge pull request #150 from joshuawarner32/master
fix silly error in recent compiler refactor
This commit is contained in:
commit
abdbf6f47a
@ -3665,6 +3665,7 @@ floatBranch(MyThread* t, Frame* frame, object code, unsigned& ip,
|
|||||||
a,
|
a,
|
||||||
b,
|
b,
|
||||||
target);
|
target);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ip -= 3;
|
ip -= 3;
|
||||||
@ -4007,7 +4008,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned initialIp,
|
|||||||
unsigned stackSize = codeMaxStack(t, methodCode(t, context->method));
|
unsigned stackSize = codeMaxStack(t, methodCode(t, context->method));
|
||||||
Stack stack(t);
|
Stack stack(t);
|
||||||
unsigned ip = initialIp;
|
unsigned ip = initialIp;
|
||||||
unsigned newIp = -1;
|
unsigned newIp;
|
||||||
stack.pushValue(Return);
|
stack.pushValue(Return);
|
||||||
|
|
||||||
start:
|
start:
|
||||||
|
Loading…
Reference in New Issue
Block a user