diff graal/GraalCompiler/src/com/sun/c1x/ir/If.java @ 2712:a0dd2b907806

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 3558ca7088c0
children 6048da340364
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/If.java	Wed May 18 18:40:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/If.java	Thu May 19 13:09:37 2011 +0200
@@ -87,8 +87,8 @@
      * @param graph
      */
     public If(Value x, Condition cond, Value y,
-              BlockBegin trueSucc, BlockBegin falseSucc, FrameState stateAfter, boolean isSafepoint, Graph graph) {
-        super(CiKind.Illegal, stateAfter, isSafepoint, 2, INPUT_COUNT, SUCCESSOR_COUNT, graph);
+              BlockBegin trueSucc, BlockBegin falseSucc, FrameState stateAfter, Graph graph) {
+        super(CiKind.Illegal, stateAfter, 2, INPUT_COUNT, SUCCESSOR_COUNT, graph);
         assert Util.archKindsEqual(x, y);
         condition = cond;
         setX(x);
@@ -187,9 +187,6 @@
         print(blockSuccessors().get(0).blockID).
         print(" else B").
         print(blockSuccessors().get(1).blockID);
-        if (isSafepoint()) {
-            out.print(" (safepoint)");
-        }
     }
 
     @Override