Author: Armin Rigo <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit