[pypy-commit] pypy default: Fix

arigo pypy.commits at gmail.com
Mon Jul 18 10:55:19 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
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()


More information about the pypy-commit mailing list