[pypy-svn] r55245 - pypy/branch/oo-jit/pypy/translator

antocuni at codespeak.net antocuni at codespeak.net
Mon May 26 14:32:56 CEST 2008


Author: antocuni
Date: Mon May 26 14:32:53 2008
New Revision: 55245

Modified:
   pypy/branch/oo-jit/pypy/translator/driver.py
Log:
make sure task_rainbow is done at the right time



Modified: pypy/branch/oo-jit/pypy/translator/driver.py
==============================================================================
--- pypy/branch/oo-jit/pypy/translator/driver.py	(original)
+++ pypy/branch/oo-jit/pypy/translator/driver.py	Mon May 26 14:32:53 2008
@@ -505,7 +505,9 @@
         backend_optimizations(self.translator)
     #
     task_backendopt_ootype = taskdef(task_backendopt_ootype, 
-                                        [OOTYPE], "ootype back-end optimisations")
+                                     [OOTYPE,
+                                      '??rainbow_ootype'],
+                                     "ootype back-end optimisations")
     OOBACKENDOPT = 'backendopt_ootype'
 
 



More information about the Pypy-commit mailing list