Fix jit flow control

This commit is contained in:
James Roseborough
2008-07-03 16:33:09 +00:00
parent f44de5cf17
commit e486c062f8
2 changed files with 90 additions and 109 deletions

View File

@@ -85,8 +85,8 @@ public class LuaJitBasicTest extends TestCase {
"local i=4\n" +
"while i>0 do\n"+
" print( i )\n"+
" break\n"+
" i = i-1\n"+
" break\n"+
"end\n");
}