Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r85762:cbd32975b94b
Date: 2016-07-18 16:51 +0200
http://bitbucket.org/pypy/pypy/changeset/cbd32975b94b/

Log:    Fix

diff --git a/rpython/jit/backend/llgraph/runner.py 
b/rpython/jit/backend/llgraph/runner.py
--- a/rpython/jit/backend/llgraph/runner.py
+++ b/rpython/jit/backend/llgraph/runner.py
@@ -1521,6 +1521,11 @@
             lle = None
         self.last_exception = lle
 
+    def execute_check_memory_error(self, descr, value):
+        if not value:
+            from rpython.jit.backend.llmodel import MissingLatestDescrError
+            raise MissingLatestDescrError
+
 
 def _getdescr(op):
     d = op.getdescr()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to