[pypy-commit] pypy default: fix for 32 bit

cfbolz noreply at buildbot.pypy.org
Wed Oct 22 10:31:13 CEST 2014


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: 
Changeset: r74063:0304bb9ea407
Date: 2014-10-22 10:30 +0200
http://bitbucket.org/pypy/pypy/changeset/0304bb9ea407/

Log:	fix for 32 bit

diff --git a/pypy/module/pypyjit/test_pypy_c/test_string.py b/pypy/module/pypyjit/test_pypy_c/test_string.py
--- a/pypy/module/pypyjit/test_pypy_c/test_string.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_string.py
@@ -82,7 +82,7 @@
             strsetitem(p25, 0, i23)
             p93 = call(ConstClass(fromstr), p25, 16, descr=<Callr . ri EF=3>)
             guard_no_exception(descr=...)
-            i95 = getfield_gc_pure(p93, descr=<FieldS rpython.rlib.rbigint.rbigint.inst_size 24>)
+            i95 = getfield_gc_pure(p93, descr=<FieldS rpython.rlib.rbigint.rbigint.inst_size .*>)
             i96 = int_gt(i95, .*)
             guard_false(i96, descr=...)
             i94 = call(ConstClass(rbigint._toint_helper), p93, descr=<Calli 8 r EF=3>)


More information about the pypy-commit mailing list