[pypy-svn] r65399 - pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Mon May 25 04:48:15 CEST 2009


Author: fijal
Date: Mon May 25 04:48:12 2009
New Revision: 65399

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/optimize2.py
Log:
oops. This element of if is always false, but kill it anyway to avoid confusion


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/optimize2.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/optimize2.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/optimize2.py	Mon May 25 04:48:12 2009
@@ -131,7 +131,7 @@
             # default handler
             op = op.clone()
             op.args = self.new_arguments(op)
-            if op.is_always_pure() or op.is_guard():
+            if op.is_always_pure():
                 for box in op.args:
                     if isinstance(box, Box):
                         break



More information about the Pypy-commit mailing list