Author: Maciej Fijalkowski <[email protected]>
Branch: resume-refactor
Changeset: r68614:8afdd8b46226
Date: 2014-01-12 15:02 +0100
http://bitbucket.org/pypy/pypy/changeset/8afdd8b46226/

Log:    hack hack hack

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
@@ -71,6 +71,7 @@
         #
         self.inputargs = map(mapping, inputargs)
         self.operations = []
+        xxxx
         resumebuilder = LLGraphResumeBuilder()
         for op in operations:
             if op.is_resume():
@@ -231,7 +232,7 @@
                      name=''):
         clt = model.CompiledLoopToken(self, looptoken.number)
         looptoken.compiled_loop_token = clt
-        lltrace = LLTrace(inputargs, operations)
+        lltrace = LLTrace(inputargs, operations, None)
         clt._llgraph_loop = lltrace
         clt._llgraph_alltraces = [lltrace]
         self._record_labels(lltrace)
@@ -240,7 +241,7 @@
                        original_loop_token, log=True):
         clt = original_loop_token.compiled_loop_token
         clt.compiling_a_bridge()
-        lltrace = LLTrace(inputargs, operations)
+        lltrace = LLTrace(inputargs, operations, faildescr)
         faildescr._llgraph_bridge = lltrace
         clt._llgraph_alltraces.append(lltrace)
         self._record_labels(lltrace)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to