Author: Armin Rigo <[email protected]>
Branch:
Changeset: r79690:6d09c895938b
Date: 2015-09-18 17:19 +0200
http://bitbucket.org/pypy/pypy/changeset/6d09c895938b/
Log: 32-bit fixes
diff --git a/rpython/jit/backend/test/calling_convention_test.py
b/rpython/jit/backend/test/calling_convention_test.py
--- a/rpython/jit/backend/test/calling_convention_test.py
+++ b/rpython/jit/backend/test/calling_convention_test.py
@@ -152,6 +152,7 @@
res = self.execute_operation(rop.CALL_F,
[funcbox] + argslist,
'float', descr=calldescr)
+ res = longlong.getrealfloat(res)
assert abs(res - result) < 0.0001
def test_call_aligned_with_args_on_the_stack(self):
@@ -194,6 +195,7 @@
res = self.execute_operation(rop.CALL_F,
[funcbox] + argslist,
'float', descr=calldescr)
+ res = longlong.getrealfloat(res)
assert abs(res - result) < 0.0001
def test_call_alignment_call_assembler(self):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit