mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-26 13:36:28 +00:00
Fix some formatting, and use inLoop() when appropriate.
llvm-svn: 28694
This commit is contained in:
parent
dc8495f4ad
commit
04f6f0775a
@ -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…
Reference in New Issue
Block a user