Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r72497:c97bfecbfc61
Date: 2014-07-26 13:54 +0200
http://bitbucket.org/pypy/pypy/changeset/c97bfecbfc61/

Log:    Oops. If, during translation, we execute app-level code that
        contains a "continue" in a "try:" block, and if we're translating
        with "-Ojit", then crash. This case occurs in the py3.3 branch.

diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py
--- a/pypy/interpreter/pyopcode.py
+++ b/pypy/interpreter/pyopcode.py
@@ -200,7 +200,7 @@
             elif opcode == opcodedesc.BREAK_LOOP.index:
                 next_instr = self.BREAK_LOOP(oparg, next_instr)
             elif opcode == opcodedesc.CONTINUE_LOOP.index:
-                next_instr = self.CONTINUE_LOOP(oparg, next_instr)
+                return self.CONTINUE_LOOP(oparg, next_instr)
             elif opcode == opcodedesc.FOR_ITER.index:
                 next_instr = self.FOR_ITER(oparg, next_instr)
             elif opcode == opcodedesc.JUMP_FORWARD.index:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to