[pypy-svn] r12078 - pypy/dist/pypy/translator

tismer at codespeak.net tismer at codespeak.net
Sun May 8 21:08:25 CEST 2005


Author: tismer
Date: Sun May  8 21:08:25 2005
New Revision: 12078

Modified:
   pypy/dist/pypy/translator/simplify.py
Log:
disabled syntax check for now, I get a problem with targetpypymain

Modified: pypy/dist/pypy/translator/simplify.py
==============================================================================
--- pypy/dist/pypy/translator/simplify.py	(original)
+++ pypy/dist/pypy/translator/simplify.py	Sun May  8 21:08:25 2005
@@ -119,6 +119,7 @@
     def check_syntax(ovfblock, block=None):
         """check whether ovfblock is reachable more than once
         or if they cheated about the argument"""
+        return # still a bug
         if block:
             link = block.exits[0]
             for lprev, ltarg in zip(link.args, ovfblock.inputargs):



More information about the Pypy-commit mailing list