[pypy-svn] r77168 - pypy/trunk/pypy/jit/metainterp/optimizeopt

benjamin at codespeak.net benjamin at codespeak.net
Sat Sep 18 04:56:26 CEST 2010


Author: benjamin
Date: Sat Sep 18 04:56:24 2010
New Revision: 77168

Modified:
   pypy/trunk/pypy/jit/metainterp/optimizeopt/optimizer.py
Log:
remove comma

Modified: pypy/trunk/pypy/jit/metainterp/optimizeopt/optimizer.py
==============================================================================
--- pypy/trunk/pypy/jit/metainterp/optimizeopt/optimizer.py	(original)
+++ pypy/trunk/pypy/jit/metainterp/optimizeopt/optimizer.py	Sat Sep 18 04:56:24 2010
@@ -351,9 +351,9 @@
         if op.opnum == rop.GUARD_VALUE:
             if self.getvalue(op.args[0]) in self.bool_boxes:
                 # Hack: turn guard_value(bool) into guard_true/guard_false.
-                # This is done after the operation is emitted, to let
-                # store_final_boxes_in_guard set the guard_opnum field
-                # of the descr to the original rop.GUARD_VALUE.
+                # This is done after the operation is emitted to let
+                # store_final_boxes_in_guard set the guard_opnum field of the
+                # descr to the original rop.GUARD_VALUE.
                 constvalue = op.args[1].getint()
                 if constvalue == 0:
                     opnum = rop.GUARD_FALSE



More information about the Pypy-commit mailing list