mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +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,
|
||||
b,
|
||||
target);
|
||||
break;
|
||||
|
||||
default:
|
||||
ip -= 3;
|
||||
@ -4007,7 +4008,7 @@ compile(MyThread* t, Frame* initialFrame, unsigned initialIp,
|
||||
unsigned stackSize = codeMaxStack(t, methodCode(t, context->method));
|
||||
Stack stack(t);
|
||||
unsigned ip = initialIp;
|
||||
unsigned newIp = -1;
|
||||
unsigned newIp;
|
||||
stack.pushValue(Return);
|
||||
|
||||
start:
|
||||
|
Loading…
Reference in New Issue
Block a user