comparison graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/CheckCastEliminationPhase.java @ 5774:a1db0ea58b53

Removed left over Ci* prefixed identifiers
author Doug Simon <doug.simon@oracle.com>
date Thu, 05 Jul 2012 21:39:22 +0200
parents b4c406861c33
children 2c088af17e59
comparison
equal deleted inserted replaced
5773:772118da9f68 5774:a1db0ea58b53
164 164
165 /* 165 /*
166 // this piece of code handles phis (merges the types and knownNull/knownNotNull of the values) 166 // this piece of code handles phis (merges the types and knownNull/knownNotNull of the values)
167 if (!(merge instanceof LoopBeginNode)) { 167 if (!(merge instanceof LoopBeginNode)) {
168 for (PhiNode phi : merge.phis()) { 168 for (PhiNode phi : merge.phis()) {
169 if (phi.type() == PhiType.Value && phi.kind() == CiKind.Object) { 169 if (phi.type() == PhiType.Value && phi.kind() == Kind.Object) {
170 ValueNode firstValue = phi.valueAt(0); 170 ValueNode firstValue = phi.valueAt(0);
171 RiResolvedType type = getNodeType(firstValue); 171 RiResolvedType type = getNodeType(firstValue);
172 boolean notNull = knownNotNull.contains(firstValue); 172 boolean notNull = knownNotNull.contains(firstValue);
173 boolean nul = knownNull.contains(firstValue); 173 boolean nul = knownNull.contains(firstValue);
174 174