[pypy-svn] r68117 - pypy/branch/floats-via-sse2/pypy/jit/backend/test

fijal at codespeak.net fijal at codespeak.net
Thu Oct 1 19:16:45 CEST 2009


Author: fijal
Date: Thu Oct  1 19:16:45 2009
New Revision: 68117

Modified:
   pypy/branch/floats-via-sse2/pypy/jit/backend/test/runner_test.py
Log:
I suppose that was the idea...


Modified: pypy/branch/floats-via-sse2/pypy/jit/backend/test/runner_test.py
==============================================================================
--- pypy/branch/floats-via-sse2/pypy/jit/backend/test/runner_test.py	(original)
+++ pypy/branch/floats-via-sse2/pypy/jit/backend/test/runner_test.py	Thu Oct  1 19:16:45 2009
@@ -906,7 +906,7 @@
         self.cpu.compile_bridge(faildescr1, fboxes2, bridge)
 
         for i in range(len(fboxes)):
-            self.cpu.set_future_value_int(i, 13.5 + 6.73 * i)
+            self.cpu.set_future_value_float(i, 13.5 + 6.73 * i)
         fail = self.cpu.execute_token(executable_token)
         assert fail is faildescr2
         res = self.cpu.get_latest_value_float(0)



More information about the Pypy-commit mailing list