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

Removed implicit safepoints.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 13:09:37 +0200
parents 0c6564c254af
children a3cd5eb68837
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java	Wed May 18 18:40:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/LookupSwitch.java	Thu May 19 13:09:37 2011 +0200
@@ -50,8 +50,8 @@
      * @param isSafepoint {@code true} if this instruction is a safepoint
      * @param graph
      */
-    public LookupSwitch(Value value, List<BlockBegin> successors, int[] keys, FrameState stateBefore, boolean isSafepoint, Graph graph) {
-        super(value, successors, stateBefore, isSafepoint, INPUT_COUNT, SUCCESSOR_COUNT, graph);
+    public LookupSwitch(Value value, List<BlockBegin> successors, int[] keys, FrameState stateBefore, Graph graph) {
+        super(value, successors, stateBefore, INPUT_COUNT, SUCCESSOR_COUNT, graph);
         this.keys = keys;
     }
 
@@ -76,9 +76,6 @@
     @Override
     public void print(LogStream out) {
         out.print("lookupswitch ");
-        if (isSafepoint()) {
-            out.print("(safepoint) ");
-        }
         out.println(value());
         int l = numberOfCases();
         for (int i = 0; i < l; i++) {