[pypy-commit] pypy backend-vector-ops: fix calling convention

fijal noreply at buildbot.pypy.org
Wed Feb 1 15:03:50 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: backend-vector-ops
Changeset: r52019:73c3fd1e59c0
Date: 2012-02-01 16:03 +0200
http://bitbucket.org/pypy/pypy/changeset/73c3fd1e59c0/

Log:	fix calling convention

diff --git a/pypy/jit/backend/x86/regalloc.py b/pypy/jit/backend/x86/regalloc.py
--- a/pypy/jit/backend/x86/regalloc.py
+++ b/pypy/jit/backend/x86/regalloc.py
@@ -233,7 +233,7 @@
                 cur_frame_pos -= 2
             else:
                 cur_frame_pos -= 1
-            loc = self.fm.frame_pos(cur_frame_pos, box.type)
+            loc = self.fm.frame_pos(cur_frame_pos, box)
             self.fm.set_binding(box, loc)
 
     def _set_initial_bindings_regs_64(self, inputargs):


More information about the pypy-commit mailing list