comparison graal/GraalCompiler/src/com/sun/c1x/value/FrameState.java @ 2776:398b8fa5dc81

Removed stateAfter from BlockEnd class. Clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 13:55:56 +0200
parents 3b73b230b86b
children d3fc4fe063bf
comparison
equal deleted inserted replaced
2775:3b73b230b86b 2776:398b8fa5dc81
336 if (x != y || ((x instanceof Phi) && ((Phi) x).block() == block)) { 336 if (x != y || ((x instanceof Phi) && ((Phi) x).block() == block)) {
337 if (typeMismatch(x, y)) { 337 if (typeMismatch(x, y)) {
338 if (x instanceof Phi) { 338 if (x instanceof Phi) {
339 Phi phi = (Phi) x; 339 Phi phi = (Phi) x;
340 if (phi.block() == block) { 340 if (phi.block() == block) {
341 //phi.makeDead(); 341 phi.makeDead();
342 } 342 }
343 } 343 }
344 inputs().set(i, null); 344 inputs().set(i, null);
345 continue; 345 continue;
346 } 346 }