[pypy-commit] pypy default: fix import

arigo pypy.commits at gmail.com
Tue Jul 19 05:02:52 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r85765:91c6cf074b0b
Date: 2016-07-19 11:04 +0200
http://bitbucket.org/pypy/pypy/changeset/91c6cf074b0b/

Log:	fix import

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
@@ -1523,8 +1523,8 @@
 
     def execute_check_memory_error(self, descr, value):
         if not value:
-            from rpython.jit.backend.llmodel import MissingLatestDescrError
-            raise MissingLatestDescrError
+            from rpython.jit.backend.llsupport import llmodel
+            raise llmodel.MissingLatestDescrError
 
 
 def _getdescr(op):


More information about the pypy-commit mailing list