[pypy-commit] pypy emit-call-x86: fix

arigo noreply at buildbot.pypy.org
Sun May 19 21:03:17 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: emit-call-x86
Changeset: r64344:6e03d53e6d6f
Date: 2013-05-19 20:57 +0200
http://bitbucket.org/pypy/pypy/changeset/6e03d53e6d6f/

Log:	fix

diff --git a/rpython/jit/backend/x86/callbuilder.py b/rpython/jit/backend/x86/callbuilder.py
--- a/rpython/jit/backend/x86/callbuilder.py
+++ b/rpython/jit/backend/x86/callbuilder.py
@@ -353,6 +353,7 @@
         except IndexError:
             return None
         if hint in self.DONT_MOVE_GPR:
+            self.ARGUMENTS_GPR[i] = hint
             res = hint
         return res
 


More information about the pypy-commit mailing list