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

arigo at codespeak.net arigo at codespeak.net
Tue Jul 14 14:42:52 CEST 2009


Author: arigo
Date: Tue Jul 14 14:42:52 2009
New Revision: 66203

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py
Log:
Comment.


Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/warmspot.py	Tue Jul 14 14:42:52 2009
@@ -185,6 +185,8 @@
         graph.startblock = support.split_before_jit_merge_point(
             *find_jit_merge_point([graph]))
         graph.startblock.isstartblock = True
+        # a crash in the following checkgraph() means that you forgot
+        # to list some variable in greens=[] or reds=[] in JitDriver.
         checkgraph(graph)
         for v in graph.getargs():
             assert isinstance(v, Variable)



More information about the Pypy-commit mailing list