Author: Armin Rigo <[email protected]>
Branch: resume-refactor
Changeset: r67433:707143609165
Date: 2013-10-16 18:43 +0200
http://bitbucket.org/pypy/pypy/changeset/707143609165/
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
@@ -1375,7 +1375,7 @@
for val in dstvalues:
if isinstance(val, int):
intvals.append(val)
- elif isinstance(val, float):
+ elif isinstance(val, longlong.r_float_storage):
floatvals.append(val)
else:
refvals.append(val)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit