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

pedronis at codespeak.net pedronis at codespeak.net
Wed Jul 13 02:15:04 CEST 2005


Author: pedronis
Date: Wed Jul 13 02:15:03 2005
New Revision: 14607

Modified:
   pypy/dist/pypy/rpython/rpbc.py
Log:
fix check.



Modified: pypy/dist/pypy/rpython/rpbc.py
==============================================================================
--- pypy/dist/pypy/rpython/rpbc.py	(original)
+++ pypy/dist/pypy/rpython/rpbc.py	Wed Jul 13 02:15:03 2005
@@ -387,7 +387,7 @@
         f, rinputs, rresult = self.function_signatures().itervalues().next()
         # the function arguments may have been normalized by normalizecalls()
         # already
-        if not f._obj.graph.normalized_for_calls:
+        if not getattr(f._obj.graph, 'normalized_for_calls', False):
             assert False, "XXX do stuff here"
         vlist = hop.inputargs(self, Void, *rinputs)
         return hop.genop('direct_call', vlist[:1] + vlist[2:],



More information about the Pypy-commit mailing list