Fix codegen issue causing misaligned register

Reported by https://hackerone.com/haquaman
This commit is contained in:
Bouke van der Bijl
2016-11-14 15:07:07 -05:00
parent a630c4f413
commit 1253982577
2 changed files with 22 additions and 0 deletions
+2
View File
@@ -2024,6 +2024,7 @@ codegen(codegen_scope *s, node *tree, int val)
}
genop(s, MKOP_sBx(OP_JMP, s->loop->pc2 - s->pc));
}
if (val) push();
break;
case NODE_RETRY:
@@ -2058,6 +2059,7 @@ codegen(codegen_scope *s, node *tree, int val)
genop(s, MKOP_sBx(OP_JMP, lp->pc1 - s->pc));
}
}
if (val) push();
}
break;
+20
View File
@@ -0,0 +1,20 @@
##
# Codegen tests
assert('codegen absorbs arguments to redo and retry if they are the argument of a call') do
assert_nothing_raised do
a=*"1", case nil
when 1
redo |
1
end
end
assert_nothing_raised do
a=*"1", case nil
when 1
retry |
1
end
end
end