[llvm] r256480 - [lcg] Fix a few more formatting goofs found by clang-format. NFC.
Chandler Carruth via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 27 17:54:21 PST 2015
Author: chandlerc
Date: Sun Dec 27 19:54:20 2015
New Revision: 256480
URL: http://llvm.org/viewvc/llvm-project?rev=256480&view=rev
Log:
[lcg] Fix a few more formatting goofs found by clang-format. NFC.
Modified:
llvm/trunk/lib/Analysis/LazyCallGraph.cpp
Modified: llvm/trunk/lib/Analysis/LazyCallGraph.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LazyCallGraph.cpp?rev=256480&r1=256479&r2=256480&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyCallGraph.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyCallGraph.cpp Sun Dec 27 19:54:20 2015
@@ -198,7 +198,8 @@ void LazyCallGraph::SCC::insertOutgoingE
assert(CalleeC.isDescendantOf(*this) &&
"Callee must be a descendant of the Caller.");
- // The only change required is to add this SCC to the parent set of the callee.
+ // The only change required is to add this SCC to the parent set of the
+ // callee.
CalleeC.ParentSCCs.insert(this);
}
@@ -454,8 +455,7 @@ void LazyCallGraph::SCC::internalDFS(
}
SmallVector<LazyCallGraph::SCC *, 1>
-LazyCallGraph::SCC::removeIntraSCCEdge(Node &CallerN,
- Node &CalleeN) {
+LazyCallGraph::SCC::removeIntraSCCEdge(Node &CallerN, Node &CalleeN) {
// First remove it from the node.
CallerN.removeEdgeInternal(CalleeN.getFunction());
@@ -522,7 +522,7 @@ LazyCallGraph::SCC::removeIntraSCCEdge(N
// the leaf SCC list.
if (!IsLeafSCC && !ResultSCCs.empty())
G->LeafSCCs.erase(std::remove(G->LeafSCCs.begin(), G->LeafSCCs.end(), this),
- G->LeafSCCs.end());
+ G->LeafSCCs.end());
// Return the new list of SCCs.
return ResultSCCs;
More information about the llvm-commits
mailing list