[pypy-svn] r41254 - pypy/dist/pypy/translator

mwh at codespeak.net mwh at codespeak.net
Sat Mar 24 19:38:01 CET 2007


Author: mwh
Date: Sat Mar 24 19:38:00 2007
New Revision: 41254

Modified:
   pypy/dist/pypy/translator/driver.py
Log:
don't run raisingop2direct_call in task_prehannotatebackendopt_lltype
two reason: 1) the replacement for int_mul_ovf uses floats which 
neither jit backend supports yet and 2) it's just a bad idea


Modified: pypy/dist/pypy/translator/driver.py
==============================================================================
--- pypy/dist/pypy/translator/driver.py	(original)
+++ pypy/dist/pypy/translator/driver.py	Sat Mar 24 19:38:00 2007
@@ -340,6 +340,7 @@
                               inline_threshold=0,
                               merge_if_blocks=True,
                               constfold=True,
+                              raisingop2direct_call=False,
                               remove_asserts=True)
     #
     task_prehannotatebackendopt_lltype = taskdef(



More information about the Pypy-commit mailing list