[pypy-commit] pypy jitframe-on-heap: another fix

bivab noreply at buildbot.pypy.org
Fri Feb 15 18:58:01 CET 2013


Author: David Schneider <david.schneider at picle.org>
Branch: jitframe-on-heap
Changeset: r61279:1b1c7e46b694
Date: 2013-02-15 18:54 +0100
http://bitbucket.org/pypy/pypy/changeset/1b1c7e46b694/

Log:	another fix

diff --git a/rpython/jit/backend/x86/assembler.py b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -2173,7 +2173,7 @@
 
     def genop_guard_call_assembler(self, op, guard_op, guard_token,
                                    arglocs, result_loc):
-        if len(arglocs) == 3:
+        if len(arglocs) == 2:
             [argloc, vloc] = arglocs
         else:
             [argloc] = arglocs


More information about the pypy-commit mailing list