mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
simplify this logic.
llvm-svn: 60189
This commit is contained in:
parent
f5d5d6026f
commit
d3f7621acd
@ -39,12 +39,14 @@ namespace {
|
||||
DeadInstElimination() : BasicBlockPass(intptr_t(&ID)) {}
|
||||
virtual bool runOnBasicBlock(BasicBlock &BB) {
|
||||
bool Changed = false;
|
||||
for (BasicBlock::iterator DI = BB.begin(); DI != BB.end(); )
|
||||
if (dceInstruction(DI)) {
|
||||
for (BasicBlock::iterator DI = BB.begin(); DI != BB.end(); ) {
|
||||
Instruction *Inst = DI++;
|
||||
if (isInstructionTriviallyDead(Inst)) {
|
||||
Inst->eraseFromParent();
|
||||
Changed = true;
|
||||
++DIEEliminated;
|
||||
} else
|
||||
++DI;
|
||||
}
|
||||
}
|
||||
return Changed;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user