comparison graal/GraalCompiler/src/com/sun/c1x/value/FrameState.java @ 2772:3e3338a1abb9

Disabled dead phi elimination and phi simplifier.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 10:27:15 +0200
parents dd6419f4bfe2
children 27512ea6bbcb
comparison
equal deleted inserted replaced
2771:056e392d63d4 2772:3e3338a1abb9
334 if (x != y || ((x instanceof Phi) && ((Phi) x).block() == block)) { 334 if (x != y || ((x instanceof Phi) && ((Phi) x).block() == block)) {
335 if (typeMismatch(x, y)) { 335 if (typeMismatch(x, y)) {
336 if (x instanceof Phi) { 336 if (x instanceof Phi) {
337 Phi phi = (Phi) x; 337 Phi phi = (Phi) x;
338 if (phi.block() == block) { 338 if (phi.block() == block) {
339 phi.makeDead(); 339 //phi.makeDead();
340 } 340 }
341 } 341 }
342 inputs().set(i, null); 342 inputs().set(i, null);
343 continue; 343 continue;
344 } 344 }