OpenJDK / graal / graal-jvmci-8
changeset 2818:bf12196e2a60
Made null checks floating.
author | Thomas Wuerthinger <thomas@wuerthinger.net> |
---|---|
date | Mon, 30 May 2011 15:36:06 +0200 |
parents | f9f40748442f |
children | 774d2bc06148 |
files | graal/GraalCompiler/src/com/sun/c1x/ir/NullCheck.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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;