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

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


Author: arigo
Date: Fri Feb 19 09:48:07 2010
New Revision: 71321

Modified:
   pypy/branch/debug-pfp/pypy/jit/metainterp/codewriter.py
Log:
Trying again to understand these lines...


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:48:07 2010
@@ -1255,8 +1255,8 @@
             func = getattr(get_funcobj(op.args[0].value), '_callable', None)
             pure = getattr(func, "_pure_function_", False)
             loopinvariant = getattr(func, "_jit_loop_invariant_", False)
-            all_promoted_args = getattr(func,
-                               "_pure_function_with_all_promoted_args_", False)
+            all_promoted_args = False  #getattr(func,
+                              #"_pure_function_with_all_promoted_args_", False)
             if pure and not all_promoted_args:
                 effectinfo = calldescr.get_extra_info()
                 assert (effectinfo is not None and



More information about the Pypy-commit mailing list