Introducing 'opcode counter' type for 'meta' opcode; replacing 'jmp_down' opcodes that are used as pointers only with 'meta' opcodes of the introduced type.
This commit is contained in:
@@ -30,16 +30,17 @@ function f1(x)
|
||||
assert(t === false);
|
||||
}
|
||||
|
||||
var i;
|
||||
var t = true;
|
||||
|
||||
for(var i = 1; i <= 10; i++)
|
||||
for(i = 1; i <= 10; i++)
|
||||
{
|
||||
f1(i);
|
||||
}
|
||||
|
||||
t = false;
|
||||
|
||||
for(var i = 11; i <= 20; i++)
|
||||
for(i = 11; i <= 20; i++)
|
||||
{
|
||||
f1(i);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user