[pypy-commit] pypy stmgc-c7: fix

arigo noreply at buildbot.pypy.org
Wed Nov 12 12:50:05 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r74479:6c9902ffa056
Date: 2014-11-12 12:48 +0100
http://bitbucket.org/pypy/pypy/changeset/6c9902ffa056/

Log:	fix

diff --git a/rpython/jit/backend/x86/assembler.py b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -2736,7 +2736,8 @@
         null_reg_cleared = False
         i = 0
         while i < nbytes:
-            addr = addr_add(base_loc, startindex_loc, baseofs + i, scale)
+            addr = addr_add(self.SEGMENT_GC, base_loc, startindex_loc,
+                            baseofs + i, scale)
             current = nbytes - i
             if current >= 16:
                 current = 16


More information about the pypy-commit mailing list