Skip to content

Commit

Permalink
remove unnecessary variable initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Warner committed Jan 3, 2014
1 parent 6d5f511 commit 233a12b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4008,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:
Expand Down

0 comments on commit 233a12b

Please sign in to comment.