Merge pull request #150 from joshuawarner32/master

fix silly error in recent compiler refactor
This commit is contained in:
Joel Dice 2014-01-03 13:45:34 -08:00
commit abdbf6f47a

View File

@ -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: