diff graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java @ 2735:d913f3049cee

Removed depth first number from BlockBegin.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 17:45:00 +0200
parents 2ef23785ca93
children a3cd5eb68837
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Thu May 19 17:43:12 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Thu May 19 17:45:00 2011 +0200
@@ -163,7 +163,6 @@
 
 //            if (block.isLoopHeader) {
                 BlockBegin blockBegin = new BlockBegin(block.startBci, ir.nextBlockNumber(), graph);
-                blockBegin.setDepthFirstNumber(blockBegin.blockID);
 
                 block.firstInstruction = blockBegin;
                 blockList[block.startBci] = block;