[pypy-commit] pypy x86-dump-labels: Don't use '#', else oparser complains

antocuni noreply at buildbot.pypy.org
Fri May 13 12:37:53 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: x86-dump-labels
Changeset: r44116:8a13e5626c13
Date: 2011-05-12 15:06 +0200
http://bitbucket.org/pypy/pypy/changeset/8a13e5626c13/

Log:	Don't use '#', else oparser complains

diff --git a/pypy/jit/metainterp/logger.py b/pypy/jit/metainterp/logger.py
--- a/pypy/jit/metainterp/logger.py
+++ b/pypy/jit/metainterp/logger.py
@@ -119,7 +119,7 @@
                         '(' + args + ')' + fail_args)
         if ops_offset and None in ops_offset:
             offset = ops_offset[None]
-            debug_print("+%d: # --end of the loop--" % offset)
+            debug_print("+%d: --end of the loop--" % offset)
 
 
 def int_could_be_an_address(x):


More information about the pypy-commit mailing list