| Index: src/IceLoopAnalyzer.cpp
|
| diff --git a/src/IceLoopAnalyzer.cpp b/src/IceLoopAnalyzer.cpp
|
| index e2f7487b7b3531f2bab329d19666a6160cd115b4..4e1b5492560a7c54971f77c81114d8ebe4dbc0be 100644
|
| --- a/src/IceLoopAnalyzer.cpp
|
| +++ b/src/IceLoopAnalyzer.cpp
|
| @@ -121,9 +121,9 @@ LoopAnalyzer::processNode(LoopAnalyzer::LoopNode &Node) {
|
| return nullptr;
|
| }
|
|
|
| - // Reaching here means a loop has been found! It consists of the nodes on
|
| - // the top of the stack, down until the current node being processed, Node,
|
| - // is found.
|
| + // Reaching here means a loop has been found! It consists of the nodes on the
|
| + // top of the stack, down until the current node being processed, Node, is
|
| + // found.
|
| for (auto It = LoopStack.rbegin(); It != LoopStack.rend(); ++It) {
|
| (*It)->setOnStack(false);
|
| (*It)->incrementLoopNestDepth();
|
|
|