Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r80341:ec634b035df3
Date: 2015-10-20 08:09 +0200
http://bitbucket.org/pypy/pypy/changeset/ec634b035df3/

Log:    Fix on 32-bit

diff --git a/rpython/jit/backend/test/runner_test.py 
b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -5068,7 +5068,9 @@
                         'faildescr6': BasicFailDescr(6)})
         looptoken = JitCellToken()
         self.cpu.compile_loop(loop.inputargs, loop.operations, looptoken)
-        deadframe = self.cpu.execute_token(looptoken, 12.25, 123456.01)
+        deadframe = self.cpu.execute_token(looptoken,
+                                           longlong.getfloatstorage(12.25),
+                                           longlong.getfloatstorage(123456.01))
         fail = self.cpu.get_latest_descr(deadframe)
         assert fail.identifier == 2
         res = longlong.getrealfloat(self.cpu.get_float_value(deadframe, 0))
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to