changeset 11702:6e8df0ca2879

Fix LocalNode dumping in CFGPrinter.
author Roland Schatz <roland.schatz@oracle.com>
date Wed, 18 Sep 2013 12:55:52 +0200
parents e29743466d00
children 300ee6e4fe14 cfca65c7cf02
files graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinter.java
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinter.java	Wed Sep 18 11:20:43 2013 +0200
+++ b/graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinter.java	Wed Sep 18 12:55:52 2013 +0200
@@ -243,12 +243,6 @@
         out.println("HIR");
         out.disableIndentation();
 
-        if (block.getPredecessorCount() == 0) {
-            // Currently method parameters are not in the schedule, so print them separately here.
-            for (ValueNode param : block.getBeginNode().graph().getNodes(LocalNode.class)) {
-                printNode(param, false);
-            }
-        }
         if (block.getBeginNode() instanceof MergeNode) {
             // Currently phi functions are not in the schedule, so print them separately here.
             for (ValueNode phi : ((MergeNode) block.getBeginNode()).phis()) {