diff graal/GraalCompiler/src/com/sun/c1x/ir/NullCheck.java @ 2818:bf12196e2a60

Made null checks floating.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Mon, 30 May 2011 15:36:06 +0200
parents c3f64b66fc78
children 015be60afcf3
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/NullCheck.java	Mon May 30 15:34:30 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/NullCheck.java	Mon May 30 15:36:06 2011 +0200
@@ -31,7 +31,7 @@
 /**
  * The {@code NullCheck} class represents an explicit null check instruction.
  */
-public final class NullCheck extends Instruction {
+public final class NullCheck extends Value {
 
     private static final int INPUT_COUNT = 1;
     private static final int INPUT_OBJECT = 0;