Author: Manuel Jacob
Branch: refactor-translator
Changeset: r61852:40c8418ff476
Date: 2013-02-25 23:46 +0100
http://bitbucket.org/pypy/pypy/changeset/40c8418ff476/

Log:    Do task_stackcheckinsertion_lltype when the type system is lltype.

diff --git a/rpython/translator/driver.py b/rpython/translator/driver.py
--- a/rpython/translator/driver.py
+++ b/rpython/translator/driver.py
@@ -206,6 +206,8 @@
             expose_task(self.task_pyjitpl)
         if not config.translation.backendopt.none:
             expose_task(self.task_backendopt)
+        if config.translation.type_system == 'lltype':
+            expose_task(self.task_stackcheckinsertion_lltype)
         for task in backends[config.translation.backend](self).get_tasks():
             expose_task(task)
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to