[pypy-commit] pypy stmgc-c7: fix

arigo noreply at buildbot.pypy.org
Thu Apr 17 13:16:15 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c7
Changeset: r70692:50398d1a134d
Date: 2014-04-17 13:15 +0200
http://bitbucket.org/pypy/pypy/changeset/50398d1a134d/

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
@@ -861,7 +861,7 @@
         self.mc.MOV(ebx, self.heap_shadowstack_top())
         if self.cpu.gc_ll_descr.stm:
             self.mc.MOV_mi((self.SEGMENT_NO, ebx.value, 0),
-                           rstm.STM_STACK_MARKER_NEW) # MOV [ebx], MARKER_NEW
+                           rstm.stm_stack_marker_new) # MOV [ebx], MARKER_NEW
             self.mc.MOV_mr((self.SEGMENT_NO, ebx.value, WORD),
                            ebp.value)                 # MOV [ebx+WORD], ebp
             self.mc.MOV_sr(STM_OLD_SHADOWSTACK, ebx.value)


More information about the pypy-commit mailing list