Author: Amaury Forgeot d'Arc <[email protected]>
Branch: 
Changeset: r214:92c5c74ce34c
Date: 2013-06-14 15:19 +0200
http://bitbucket.org/pypy/benchmarks/changeset/92c5c74ce34c/

Log:    Add support for an opcode recently introduced in pypy. Necessary
        when translating with such a recent interpreter.

diff --git a/lib/pypy/rpython/flowspace/flowcontext.py 
b/lib/pypy/rpython/flowspace/flowcontext.py
--- a/lib/pypy/rpython/flowspace/flowcontext.py
+++ b/lib/pypy/rpython/flowspace/flowcontext.py
@@ -800,6 +800,9 @@
         self.popvalue()
         return next_instr
 
+    def JUMP_IF_NOT_DEBUG(self, target, next_instr):
+        return next_instr
+
     def GET_ITER(self, oparg, next_instr):
         w_iterable = self.popvalue()
         w_iterator = self.space.iter(w_iterable)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to