diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-07 21:50:19 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-07 21:50:19 +0000 |
commit | 4561ab5d8199cbfe21288d06b89d8268b48e4be2 (patch) | |
tree | 29fa06e6f00b4b874fe449a847c6431d0c472024 /tools/llvmc2/CompilationGraph.cpp | |
parent | 1fd2e6d84e271c17d7ae8778058c13de517dbc17 (diff) |
Use Doxygen-style comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc2/CompilationGraph.cpp')
-rw-r--r-- | tools/llvmc2/CompilationGraph.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/llvmc2/CompilationGraph.cpp b/tools/llvmc2/CompilationGraph.cpp index 1b50711487..d149c0fbfd 100644 --- a/tools/llvmc2/CompilationGraph.cpp +++ b/tools/llvmc2/CompilationGraph.cpp @@ -33,7 +33,7 @@ extern cl::list<std::string> Languages; namespace { - // Return the edge with the maximum weight. + /// ChooseEdge - Return the edge with the maximum weight. template <class C> const Edge* ChooseEdge(const C& EdgesContainer, const InputLanguagesSet& InLangs, @@ -304,8 +304,6 @@ TopologicalSortFilterJoinNodes(std::vector<const Node*>& Out) { std::back_inserter(Out), NotJoinNode); } -// Build the targets. Command-line options are accessed through global -// variables. int CompilationGraph::Build (const sys::Path& TempDir) { InputLanguagesSet InLangs; |