mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Make sure the instruction combiner doesn't lose track of instructions
when replacing them, missing the opportunity to do simplifications llvm-svn: 13308
This commit is contained in:
parent
911e21e8ca
commit
f5a5668cf6
@ -2934,9 +2934,8 @@ bool InstCombiner::runOnFunction(Function &F) {
|
||||
bool Changed = false;
|
||||
TD = &getAnalysis<TargetData>();
|
||||
|
||||
for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i) {
|
||||
WorkList.push_back(&*i);
|
||||
}
|
||||
for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i)
|
||||
WorkList.push_back(&*i);
|
||||
|
||||
|
||||
while (!WorkList.empty()) {
|
||||
@ -2998,6 +2997,10 @@ bool InstCombiner::runOnFunction(Function &F) {
|
||||
BasicBlock *InstParent = I->getParent();
|
||||
InstParent->getInstList().insert(I, Result);
|
||||
|
||||
for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
|
||||
if (Instruction *OpI = dyn_cast<Instruction>(I->getOperand(i)))
|
||||
WorkList.push_back(OpI);
|
||||
|
||||
// Everything uses the new instruction now...
|
||||
I->replaceAllUsesWith(Result);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user