mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
Fix some formatting, and use inLoop() when appropriate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28694 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
92deacf2f7
commit
e9d93d5d70
@ -78,7 +78,8 @@ namespace {
|
||||
|
||||
/// inLoop - returns true if the given block is within the current loop
|
||||
const bool inLoop(BasicBlock* B) {
|
||||
return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B); }
|
||||
return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
|
||||
}
|
||||
};
|
||||
|
||||
RegisterOpt<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
|
||||
@ -242,8 +243,7 @@ SetVector<Instruction*> LCSSA::getLoopValuesUsedOutsideLoop(Loop *L) {
|
||||
for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
|
||||
++UI) {
|
||||
BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
|
||||
if (!std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), UserBB))
|
||||
{
|
||||
if (!inLoop(UserBB)) {
|
||||
AffectedValues.insert(I);
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user