Author: Maciej Fijalkowski <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to