[pypy-svn] r13490 - pypy/dist/pypy/translator/goal

pedronis at codespeak.net pedronis at codespeak.net
Thu Jun 16 22:26:00 CEST 2005


Author: pedronis
Date: Thu Jun 16 22:25:59 2005
New Revision: 13490

Modified:
   pypy/dist/pypy/translator/goal/translate_pypy.py
Log:
specialize now is called trough the translator



Modified: pypy/dist/pypy/translator/goal/translate_pypy.py
==============================================================================
--- pypy/dist/pypy/translator/goal/translate_pypy.py	(original)
+++ pypy/dist/pypy/translator/goal/translate_pypy.py	Thu Jun 16 22:25:59 2005
@@ -91,7 +91,7 @@
         if not options['-no-s']:
             a.simplify()
         if not options['-no-t']:
-            a.specialize()
+            t.specialize()
         t.frozen = True   # cannot freeze if we don't have annotations
         if not options['-no-mark-some-objects']:
             options['-no-mark-some-objects'] = True # Do not do this again



More information about the Pypy-commit mailing list