Author: Maciej Fijalkowski <[email protected]>
Branch: jitframe-on-heap
Changeset: r60287:d19a633a353a
Date: 2013-01-21 11:25 +0200
http://bitbucket.org/pypy/pypy/changeset/d19a633a353a/
Log: pass the correct type
diff --git a/rpython/jit/backend/x86/runner.py
b/rpython/jit/backend/x86/runner.py
--- a/rpython/jit/backend/x86/runner.py
+++ b/rpython/jit/backend/x86/runner.py
@@ -129,14 +129,14 @@
for i, kind in kinds:
arg = args[i]
if kind == history.INT:
- self.set_int_value(frame, num, arg)
+ self.set_int_value(ll_frame, num, arg)
elif kind == history.FLOAT:
- self.set_float_value(frame, num, arg)
+ self.set_float_value(ll_frame, num, arg)
if IS_X86_32:
num += WORD
else:
assert kind == history.REF
- self.set_ref_value(frame, num, arg)
+ self.set_ref_value(ll_frame, num, arg)
num += WORD
ll_frame = func(ll_frame)
finally:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit