Author: Armin Rigo <[email protected]>
Branch: jit-singlefloat
Changeset: r46096:dead3650d9af
Date: 2011-07-29 20:44 +0200
http://bitbucket.org/pypy/pypy/changeset/dead3650d9af/

Log:    Fix on 64-bit.

diff --git a/pypy/jit/metainterp/test/test_fficall.py 
b/pypy/jit/metainterp/test/test_fficall.py
--- a/pypy/jit/metainterp/test/test_fficall.py
+++ b/pypy/jit/metainterp/test/test_fficall.py
@@ -63,7 +63,7 @@
                                supports_longlong     = self.supports_all,
                                supports_singlefloats = self.supports_all)
         d = {'floats': self.supports_all,
-             'longlong': self.supports_all,
+             'longlong': self.supports_all or not IS_32_BIT,
              'singlefloats': self.supports_all,
              'byval': False}
         supported = all(d[check] for check in jitif)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to