[pypy-svn] r71372 - pypy/branch/debug-vref2/pypy/jit/metainterp

arigo at codespeak.net arigo at codespeak.net
Sun Feb 21 13:06:27 CET 2010


Author: arigo
Date: Sun Feb 21 13:06:26 2010
New Revision: 71372

Modified:
   pypy/branch/debug-vref2/pypy/jit/metainterp/optimizeopt.py
Log:
Uses 121 instead of 120, as 0x79 is less likely to
show up in assembler for unrelated reasons than 0x78.


Modified: pypy/branch/debug-vref2/pypy/jit/metainterp/optimizeopt.py
==============================================================================
--- pypy/branch/debug-vref2/pypy/jit/metainterp/optimizeopt.py	(original)
+++ pypy/branch/debug-vref2/pypy/jit/metainterp/optimizeopt.py	Sun Feb 21 13:06:26 2010
@@ -812,7 +812,7 @@
                       descr = vrefinfo.descr_virtual_token)
         self.optimize_SETFIELD_GC(op1)
         # - set debug stuff
-        args = [op.args[0], ConstInt(120)]
+        args = [op.args[0], ConstInt(121)]
         op1 = ResOperation(rop.SETFIELD_GC, args, None,
                       descr = vrefinfo.descr_debug_from)
         self.optimize_SETFIELD_GC(op1)



More information about the Pypy-commit mailing list