diff graal/GraalCompiler/src/com/sun/c1x/ir/BlockBegin.java @ 2694:773189811d10

Removed dominator calculation.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 18 May 2011 14:40:29 +0200
parents bcbda467e1ae
children d06cff53b77e
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/BlockBegin.java	Wed May 18 14:37:57 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/BlockBegin.java	Wed May 18 14:40:29 2011 +0200
@@ -159,14 +159,6 @@
     }
 
     /**
-     * Gets the dominator of this block.
-     * @return the dominator block
-     */
-    public BlockBegin dominator() {
-        return dominator;
-    }
-
-    /**
      * Sets the dominator block for this block.
      * @param dominator the dominator for this block
      */
@@ -719,11 +711,6 @@
             out.print(')');
         }
 
-        // print dominator block
-        if (dominator() != null) {
-            out.print(" dom B").print(dominator().blockID);
-        }
-
         // print predecessors
         if (!blockPredecessors().isEmpty()) {
             out.print(" pred:");