[pypy-svn] r18499 - pypy/dist/pypy/rpython

afa at codespeak.net afa at codespeak.net
Wed Oct 12 18:39:45 CEST 2005


Author: afa
Date: Wed Oct 12 18:39:43 2005
New Revision: 18499

Modified:
   pypy/dist/pypy/rpython/rtyper.py
Log:
(valentino, afa, arigo): correct insertion of stack checks


Modified: pypy/dist/pypy/rpython/rtyper.py
==============================================================================
--- pypy/dist/pypy/rpython/rtyper.py	(original)
+++ pypy/dist/pypy/rpython/rtyper.py	Wed Oct 12 18:39:43 2005
@@ -109,8 +109,8 @@
         """Main entry point: specialize all annotated blocks of the program."""
         self.crash_on_first_typeerror = crash_on_first_typeerror
         # specialize depends on annotator simplifications
+        insert_stackcheck(self.annotator)
         if not dont_simplify_again:
-            insert_stackcheck(self.annotator)
             self.annotator.simplify()
             
         # first make sure that all functions called in a group have exactly



More information about the Pypy-commit mailing list