[pypy-commit] pypy jit-leaner-frontend: fix

fijal pypy.commits at gmail.com
Tue Mar 8 05:18:32 EST 2016


Author: fijal
Branch: jit-leaner-frontend
Changeset: r82876:7d2ffc440da7
Date: 2016-03-08 12:17 +0200
http://bitbucket.org/pypy/pypy/changeset/7d2ffc440da7/

Log:	fix

diff --git a/rpython/jit/metainterp/optimizeopt/unroll.py b/rpython/jit/metainterp/optimizeopt/unroll.py
--- a/rpython/jit/metainterp/optimizeopt/unroll.py
+++ b/rpython/jit/metainterp/optimizeopt/unroll.py
@@ -228,7 +228,7 @@
                         inline_short_preamble, box_names_memo):
         self._check_no_forwarding([trace.inputargs])
         info, ops = self.optimizer.propagate_all_forward(trace.get_iter(),
-            call_pure_results)
+            call_pure_results, False)
         jump_op = info.jump_op
         cell_token = jump_op.getdescr()
         assert isinstance(cell_token, JitCellToken)


More information about the pypy-commit mailing list