# HG changeset patch # User Thomas Wuerthinger # Date 1306762566 -7200 # Node ID bf12196e2a60cfe74e0c4f6742116b80c82ba2bd # Parent f9f40748442f36cf686ec76217f341ad65abe350 Made null checks floating. diff -r f9f40748442f -r bf12196e2a60 graal/GraalCompiler/src/com/sun/c1x/ir/NullCheck.java --- 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;