diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-30 02:12:57 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-01-30 02:12:57 +0000 |
commit | c7d6951c92a3153e6e5cec17b70d94d76ff6609f (patch) | |
tree | e9a3aaace8eaacd8f24c5e4ed7951d51723353bf /llvm/tools/llvmc | |
parent | 34beb046ea3bd9e7f2c03c151dcaf3328e365010 (diff) | |
download | bcm5719-llvm-c7d6951c92a3153e6e5cec17b70d94d76ff6609f.tar.gz bcm5719-llvm-c7d6951c92a3153e6e5cec17b70d94d76ff6609f.zip |
Add some comments.
llvm-svn: 63364
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/driver/CompilationGraph.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/tools/llvmc/driver/CompilationGraph.cpp b/llvm/tools/llvmc/driver/CompilationGraph.cpp index 2c59ee6314c..238ef6f42a7 100644 --- a/llvm/tools/llvmc/driver/CompilationGraph.cpp +++ b/llvm/tools/llvmc/driver/CompilationGraph.cpp @@ -390,6 +390,8 @@ int CompilationGraph::CheckMultipleDefaultEdges() const { int ret = 0; InputLanguagesSet Dummy; + // For all nodes, just iterate over the outgoing edges and check if there is + // more than one edge with maximum weight. for (const_nodes_iterator B = this->NodesMap.begin(), E = this->NodesMap.end(); B != E; ++B) { const Node& N = B->second; @@ -423,6 +425,9 @@ int CompilationGraph::CheckCycles() { std::queue<Node*> Q; Q.push(&getNode("root")); + // Try to delete all nodes that have no ingoing edges, starting from the + // root. If there are any nodes left after this operation, then we have a + // cycle. This relies on '--check-graph' not performing the topological sort. while (!Q.empty()) { Node* A = Q.front(); Q.pop(); @@ -447,7 +452,6 @@ int CompilationGraph::CheckCycles() { return 0; } - int CompilationGraph::Check () { // We try to catch as many errors as we can in one go. int ret = 0; |