[pypy-svn] r51247 - pypy/branch/asmgcroot/pypy/translator/c/gcc

arigo at codespeak.net arigo at codespeak.net
Mon Feb 4 13:11:11 CET 2008


Author: arigo
Date: Mon Feb  4 13:11:11 2008
New Revision: 51247

Modified:
   pypy/branch/asmgcroot/pypy/translator/c/gcc/trackgcroot.py
Log:
Wrong direction.  Doesn't matter really, but it gives confusing debugging outputs.


Modified: pypy/branch/asmgcroot/pypy/translator/c/gcc/trackgcroot.py
==============================================================================
--- pypy/branch/asmgcroot/pypy/translator/c/gcc/trackgcroot.py	(original)
+++ pypy/branch/asmgcroot/pypy/translator/c/gcc/trackgcroot.py	Mon Feb  4 13:11:11 2008
@@ -758,7 +758,7 @@
 
 class InsnCannotFollowEsp(InsnStackAdjust):
     def __init__(self):
-        self.delta = 7     # use an odd value as marker
+        self.delta = -7     # use an odd value as marker
 
 class InsnStop(Insn):
     pass



More information about the Pypy-commit mailing list