comparison 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
comparison
equal deleted inserted replaced
2850:7474789a8120 2851:14708c03abba
55 int index = 0; 55 int index = 0;
56 if (!isStatic(method.accessFlags())) { 56 if (!isStatic(method.accessFlags())) {
57 // add the receiver and assume it is non null 57 // add the receiver and assume it is non null
58 Local local = new Local(method.holder().kind(), javaIndex, graph); 58 Local local = new Local(method.holder().kind(), javaIndex, graph);
59 local.inputs().set(0, graph.start()); 59 local.inputs().set(0, graph.start());
60 local.setNonNull(true);
61 local.setDeclaredType(method.holder()); 60 local.setDeclaredType(method.holder());
62 storeLocal(javaIndex, local); 61 storeLocal(javaIndex, local);
63 javaIndex = 1; 62 javaIndex = 1;
64 index = 1; 63 index = 1;
65 } 64 }