1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

remove some weirdness that came from the LSR code that has

nothing to do with dead instruction elimination.  No tests in
dejagnu depend on this, so I don't know what it was needed for.

llvm-svn: 60202
This commit is contained in:
Chris Lattner 2008-11-28 00:58:15 +00:00
parent 69e0a27f94
commit b9af105cff

View File

@ -190,14 +190,7 @@ void llvm::RecursivelyDeleteTriviallyDeadInstructions(Value *V,
while (!Insts.empty()) {
I = *Insts.begin();
Insts.erase(I);
// If this is a PHI node, we may be able to make it dead if we know all the
// input values are the same.
if (PHINode *PN = dyn_cast<PHINode>(I)) {
if (Value *PNV = PN->hasConstantValue())
PN->replaceAllUsesWith(PNV);
}
// Okay, if the instruction is dead, delete it.
if (!isInstructionTriviallyDead(I))
continue;