[pypy-commit] pypy vmprof2: ups fix that

fijal noreply at buildbot.pypy.org
Tue Apr 21 20:03:09 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: vmprof2
Changeset: r76862:ba287c05cbb7
Date: 2015-04-21 20:03 +0200
http://bitbucket.org/pypy/pypy/changeset/ba287c05cbb7/

Log:	ups fix that

diff --git a/rpython/jit/metainterp/compile.py b/rpython/jit/metainterp/compile.py
--- a/rpython/jit/metainterp/compile.py
+++ b/rpython/jit/metainterp/compile.py
@@ -929,7 +929,7 @@
     ]
     operations[1].setfailargs([])
     operations = get_deep_immutable_oplist(operations)
-    cpu.compile_loop(0, -1, inputargs, operations, jitcell_token, log=False)
+    cpu.compile_loop(inputargs, operations, jitcell_token, log=False)
     if memory_manager is not None:    # for tests
         memory_manager.keep_loop_alive(jitcell_token)
     return jitcell_token


More information about the pypy-commit mailing list