[pypy-svn] r50000 - pypy/dist/pypy/objspace/flow

arigo at codespeak.net arigo at codespeak.net
Sat Dec 22 10:26:05 CET 2007


Author: arigo
Date: Sat Dec 22 10:26:04 2007
New Revision: 50000

Modified:
   pypy/dist/pypy/objspace/flow/model.py
Log:
This change is likely to break tests; I checked it in
to see the results of the automated test run on wyvern.
Comment it out until we know.


Modified: pypy/dist/pypy/objspace/flow/model.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/model.py	(original)
+++ pypy/dist/pypy/objspace/flow/model.py	Sat Dec 22 10:26:04 2007
@@ -522,8 +522,8 @@
                         #assert v.value != last_exc_value
                 if op.opname == 'direct_call':
                     assert isinstance(op.args[0], Constant)
-                elif op.opname == 'indirect_call':
-                    assert isinstance(op.args[0], Variable)
+                #elif op.opname == 'indirect_call':
+                #    assert isinstance(op.args[0], Variable)
                 definevar(op.result)
 
             exc_links = {}



More information about the Pypy-commit mailing list