diff graal/GraalCompiler/src/com/sun/c1x/ir/Unwind.java @ 2774:93fd92c9f8b0

Removed usage of stateAfter on BlockEnd instructions.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 13:39:50 +0200
parents 0fe79e7435c3
children bd17ac598c6e
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/Unwind.java	Tue May 24 12:07:17 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/Unwind.java	Tue May 24 13:39:50 2011 +0200
@@ -65,7 +65,7 @@
     }
 
     public Unwind(Value exception, Graph graph) {
-        super(CiKind.Object, null, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
+        super(CiKind.Object, 0, INPUT_COUNT, SUCCESSOR_COUNT, graph);
         setException(exception);
         successors().set(SUCCESSOR_END, graph.end());
     }