# HG changeset patch # User Roland Schatz # Date 1379501752 -7200 # Node ID 6e8df0ca28791658a9c18d420ad773e984ea6fa5 # Parent e29743466d00da475e6e032fcb2adb419ba23bd9 Fix LocalNode dumping in CFGPrinter. diff -r e29743466d00 -r 6e8df0ca2879 graal/com.oracle.graal.printer/src/com/oracle/graal/printer/CFGPrinter.java --- 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()) {