mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Fix 80 character formatting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5604 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -149,10 +149,10 @@ Loop *LoopInfo::ConsiderForLoop(BasicBlock *BB, const DominatorSet &DS) {
|
|||||||
if (BBMI == BBMap.end() || BBMI->first != *I) { // Not in map yet...
|
if (BBMI == BBMap.end() || BBMI->first != *I) { // Not in map yet...
|
||||||
BBMap.insert(BBMI, std::make_pair(*I, L));
|
BBMap.insert(BBMI, std::make_pair(*I, L));
|
||||||
} else {
|
} else {
|
||||||
// If this is already in the BBMap then this means that we already added
|
// If this is already in the BBMap then this means that we already
|
||||||
// a loop for it, but incorrectly added the loop to a higher level loop
|
// added a loop for it, but incorrectly added the loop to a higher
|
||||||
// instead of the current loop we are creating. Fix this now by moving
|
// level loop instead of the current loop we are creating. Fix this
|
||||||
// the loop into the correct subloop.
|
// now by moving the loop into the correct subloop.
|
||||||
//
|
//
|
||||||
Loop *SubLoop = BBMI->second;
|
Loop *SubLoop = BBMI->second;
|
||||||
Loop *OldSubLoopParent = SubLoop->getParentLoop();
|
Loop *OldSubLoopParent = SubLoop->getParentLoop();
|
||||||
|
Reference in New Issue
Block a user