[pypy-commit] pypy fast-slowpath: Fix on x86-32

arigo noreply at buildbot.pypy.org
Sun Jul 28 15:29:27 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: fast-slowpath
Changeset: r65744:5ff6858cd72f
Date: 2013-07-28 15:28 +0200
http://bitbucket.org/pypy/pypy/changeset/5ff6858cd72f/

Log:	Fix on x86-32

diff --git a/rpython/jit/backend/llsupport/test/test_gc_integration.py b/rpython/jit/backend/llsupport/test/test_gc_integration.py
--- a/rpython/jit/backend/llsupport/test/test_gc_integration.py
+++ b/rpython/jit/backend/llsupport/test/test_gc_integration.py
@@ -86,7 +86,7 @@
             if self.cpu.IS_64_BIT:
                 assert nos == [0, 1, 31]
             else:
-                assert nos ==  [4, 5, 25]
+                assert nos ==  [0, 1, 25]
         elif self.cpu.backend_name.startswith('arm'):
             assert nos == [9, 10, 47]
         else:


More information about the pypy-commit mailing list