[pypy-svn] r71322 - pypy/branch/debug-pfp/pypy/jit/metainterp

arigo at codespeak.net arigo at codespeak.net
Fri Feb 19 09:53:59 CET 2010


Author: arigo
Date: Fri Feb 19 09:53:58 2010
New Revision: 71322

Modified:
   pypy/branch/debug-pfp/pypy/jit/metainterp/codewriter.py
Log:
Disable this too, while I'm at it.


Modified: pypy/branch/debug-pfp/pypy/jit/metainterp/codewriter.py
==============================================================================
--- pypy/branch/debug-pfp/pypy/jit/metainterp/codewriter.py	(original)
+++ pypy/branch/debug-pfp/pypy/jit/metainterp/codewriter.py	Fri Feb 19 09:53:58 2010
@@ -1254,7 +1254,7 @@
         if op.opname == "direct_call":
             func = getattr(get_funcobj(op.args[0].value), '_callable', None)
             pure = getattr(func, "_pure_function_", False)
-            loopinvariant = getattr(func, "_jit_loop_invariant_", False)
+            #loopinvariant = getattr(func, "_jit_loop_invariant_", False)
             all_promoted_args = False  #getattr(func,
                               #"_pure_function_with_all_promoted_args_", False)
             if pure and not all_promoted_args:



More information about the Pypy-commit mailing list