[pypy-svn] r65888 - pypy/branch/pyjitpl5/pypy/jit/metainterp

arigo at codespeak.net arigo at codespeak.net
Tue Jun 23 19:30:09 CEST 2009


Author: arigo
Date: Tue Jun 23 19:30:08 2009
New Revision: 65888

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/codewriter.py
Log:
Put a warning.


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/codewriter.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/codewriter.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/codewriter.py	Tue Jun 23 19:30:08 2009
@@ -292,6 +292,9 @@
             # (XXX temporary hack, improve...)
             if self.portal:
                 raise
+            history.log.WARNING('general usage of a virtualizable array, '
+                                'ignoring graph')
+            history.log.WARNING('  %s' % (self.graph,))
             assert self._tmphack is False
             self._tmphack = True
             self.graph = make_calling_stub(self.codewriter.rtyper, self.graph)



More information about the Pypy-commit mailing list