mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 20:33:15 +00:00
Fix uninitialized use of the Changed variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
91d49f5ba1
commit
3fea643fb4
@ -1747,6 +1747,7 @@ bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) {
|
|||||||
SE = &getAnalysis<ScalarEvolution>();
|
SE = &getAnalysis<ScalarEvolution>();
|
||||||
TD = &getAnalysis<TargetData>();
|
TD = &getAnalysis<TargetData>();
|
||||||
UIntPtrTy = TD->getIntPtrType();
|
UIntPtrTy = TD->getIntPtrType();
|
||||||
|
Changed = false;
|
||||||
|
|
||||||
// Find all uses of induction variables in this loop, and catagorize
|
// Find all uses of induction variables in this loop, and catagorize
|
||||||
// them by stride. Start by finding all of the PHI nodes in the header for
|
// them by stride. Start by finding all of the PHI nodes in the header for
|
||||||
@ -1831,6 +1832,7 @@ bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager &LPM) {
|
|||||||
SE->deleteValueFromRecords(PN);
|
SE->deleteValueFromRecords(PN);
|
||||||
PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
|
PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
|
||||||
DeadInsts.insert(PN);
|
DeadInsts.insert(PN);
|
||||||
|
Changed = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user