Author: Armin Rigo <[email protected]>
Branch:
Changeset: r63376:278985f308f0
Date: 2013-04-15 17:58 +0200
http://bitbucket.org/pypy/pypy/changeset/278985f308f0/
Log: Translation 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
@@ -2093,7 +2093,7 @@
# special-case: reload ebp from the css
from rpython.memory.gctransform import asmgcroot
index_of_ebp = css + WORD * (2+asmgcroot.INDEX_OF_EBP)
- mc.MOV_rs(ebp.value, index_of_ebp) # MOV EBP, [css.ebp]
+ self.mc.MOV_rs(ebp.value, index_of_ebp) # MOV EBP, [css.ebp]
#else:
# for shadowstack, done for us by _reload_frame_if_necessary()
self._reload_frame_if_necessary(self.mc)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit