[pypy-svn] r65461 - pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp

fijal at codespeak.net fijal at codespeak.net
Wed May 27 18:25:50 CEST 2009


Author: fijal
Date: Wed May 27 18:25:50 2009
New Revision: 65461

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/graphpage.py
Log:
Fix graphpage


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/graphpage.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/graphpage.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/metainterp/graphpage.py	Wed May 27 18:25:50 2009
@@ -138,7 +138,7 @@
         while True:
             op = operations[opindex]
             lines.append(repr(op))
-            if op.is_guard():
+            if op.is_guard() and op.opnum != rop.GUARD_NONVIRTUALIZED:
                 tgt = op.suboperations[0]
                 tgt_g, tgt_i = self.all_operations[tgt]
                 self.genedge((graphindex, opstartindex),



More information about the Pypy-commit mailing list