[pypy-commit] pypy errno-again: fix

arigo noreply at buildbot.pypy.org
Sat Jan 17 09:28:19 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: errno-again
Changeset: r75408:34e06d532620
Date: 2015-01-17 09:28 +0100
http://bitbucket.org/pypy/pypy/changeset/34e06d532620/

Log:	fix

diff --git a/rpython/jit/backend/arm/opassembler.py b/rpython/jit/backend/arm/opassembler.py
--- a/rpython/jit/backend/arm/opassembler.py
+++ b/rpython/jit/backend/arm/opassembler.py
@@ -1077,7 +1077,7 @@
     def emit_guard_call_release_gil(self, op, guard_op, arglocs, regalloc,
                                                                     fcond):
         numargs = op.numargs()
-        callargs = arglocs[:numargs + 4]     # extract the arguments to the call
+        callargs = arglocs[:numargs + 3]     # extract the arguments to the call
         guardargs = arglocs[len(callargs):]  # extrat the arguments for the guard
         self._store_force_index(guard_op)
         self._emit_call(op, callargs, is_call_release_gil=True)


More information about the pypy-commit mailing list