fix thinko in jsr_w implementation

This commit is contained in:
Joel Dice 2007-11-27 15:22:05 -07:00
parent 74235ea33c
commit 56a5cf2503

View File

@ -1928,7 +1928,7 @@ interpret(Thread* t)
uint32_t offset = codeReadInt32(t, code, ip);
pushInt(t, ip);
ip = (ip - 3) + static_cast<int32_t>(offset);
ip = (ip - 5) + static_cast<int32_t>(offset);
} goto loop;
case l2i: {