WIP 2.6 j{f,b}_pop fix

This commit is contained in:
rocky
2016-06-27 16:16:35 -04:00
parent fa84f4277a
commit 460ad129cc
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -51,8 +51,8 @@ class Python26Parser(Python2Parser):
""" """
jmp_true ::= JUMP_IF_TRUE POP_TOP jmp_true ::= JUMP_IF_TRUE POP_TOP
jmp_false ::= JUMP_IF_FALSE POP_TOP jmp_false ::= JUMP_IF_FALSE POP_TOP
jf_pop ::= JUMP_FORWARD POP_TOP jf_pop ::= JUMP_FORWARD COME_FROM POP_TOP
jb_pop ::= JUMP_BACK POP_TOP jb_pop ::= JUMP_BACK COME_FROM POP_TOP
_ifstmts_jump ::= c_stmts_opt jf_pop COME_FROM _ifstmts_jump ::= c_stmts_opt jf_pop COME_FROM
""" """