diff graal/GraalCompiler/src/com/sun/c1x/value/FrameStateBuilder.java @ 2851:14708c03abba

Remove isNonNull
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 07 Jun 2011 11:36:32 +0200
parents 7596ae867a7b
children 5c545fef2c81
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/value/FrameStateBuilder.java	Tue Jun 07 11:19:01 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/value/FrameStateBuilder.java	Tue Jun 07 11:36:32 2011 +0200
@@ -57,7 +57,6 @@
             // add the receiver and assume it is non null
             Local local = new Local(method.holder().kind(), javaIndex, graph);
             local.inputs().set(0, graph.start());
-            local.setNonNull(true);
             local.setDeclaredType(method.holder());
             storeLocal(javaIndex, local);
             javaIndex = 1;