[pypy-svn] r32172 - pypy/dist/pypy/rpython/lltypesystem

pedronis at codespeak.net pedronis at codespeak.net
Mon Sep 11 18:18:56 CEST 2006


Author: pedronis
Date: Mon Sep 11 18:18:55 2006
New Revision: 32172

Modified:
   pypy/dist/pypy/rpython/lltypesystem/lloperation.py
Log:
(arigo, pedronis)

Make debug_assert canfold again. This means it will be removed by 
backendopts and fixes some now failing tests.



Modified: pypy/dist/pypy/rpython/lltypesystem/lloperation.py
==============================================================================
--- pypy/dist/pypy/rpython/lltypesystem/lloperation.py	(original)
+++ pypy/dist/pypy/rpython/lltypesystem/lloperation.py	Mon Sep 11 18:18:55 2006
@@ -401,7 +401,7 @@
     'debug_print':          LLOp(),
     'debug_pdb':            LLOp(),
     'debug_log_exc':        LLOp(),
-    'debug_assert':         LLOp(canrun=True),
+    'debug_assert':         LLOp(canfold=True),
 }
 
     # __________ operations on PyObjects __________



More information about the Pypy-commit mailing list