[pypy-svn] r68033 - pypy/trunk/pypy/translator

fijal at codespeak.net fijal at codespeak.net
Wed Sep 30 16:06:08 CEST 2009


Author: fijal
Date: Wed Sep 30 16:06:07 2009
New Revision: 68033

Modified:
   pypy/trunk/pypy/translator/driver.py
Log:
Fix also here


Modified: pypy/trunk/pypy/translator/driver.py
==============================================================================
--- pypy/trunk/pypy/translator/driver.py	(original)
+++ pypy/trunk/pypy/translator/driver.py	Wed Sep 30 16:06:07 2009
@@ -384,7 +384,7 @@
         #
         from pypy.jit.metainterp.warmspot import apply_jit
         apply_jit(self.translator, policy=self.jitpolicy,
-                  debug_level=self.config.translation.jit_debug,
+                  debug_level=JIT_DEBUG[self.config.translation.jit_debug],
                   backend_name='cli', inline=True) #XXX
         #
         self.log.info("the JIT compiler was generated")



More information about the Pypy-commit mailing list