diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-14 14:57:36 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-09-14 14:57:36 +0000 |
commit | 5485acd440942fbb57bd27bb7e9414dbb68c74b4 (patch) | |
tree | 10c64adb06d29b0d44cfd213490e6061c1c82a37 /llvm/lib/Support/DAGDeltaAlgorithm.cpp | |
parent | 4622cd7eddd81fcac135c1a3f084b7eaa8606185 (diff) | |
download | bcm5719-llvm-5485acd440942fbb57bd27bb7e9414dbb68c74b4.tar.gz bcm5719-llvm-5485acd440942fbb57bd27bb7e9414dbb68c74b4.zip |
Fix Doxygen issues:
* wrap code blocks in \code ... \endcode;
* refer to parameter names in paragraphs correctly (\arg is not what most
people want -- it starts a new paragraph);
* use \param instead of \arg to document parameters in order to be consistent
with the rest of the codebase.
llvm-svn: 163902
Diffstat (limited to 'llvm/lib/Support/DAGDeltaAlgorithm.cpp')
-rw-r--r-- | llvm/lib/Support/DAGDeltaAlgorithm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/DAGDeltaAlgorithm.cpp b/llvm/lib/Support/DAGDeltaAlgorithm.cpp index 1e89c6ad2ff..a616045b6bb 100644 --- a/llvm/lib/Support/DAGDeltaAlgorithm.cpp +++ b/llvm/lib/Support/DAGDeltaAlgorithm.cpp @@ -122,7 +122,7 @@ private: DDA.UpdatedSearchState(Changes, Sets, Required); } - /// ExecuteOneTest - Execute a single test predicate on the change set \arg S. + /// ExecuteOneTest - Execute a single test predicate on the change set \p S. bool ExecuteOneTest(const changeset_ty &S) { // Check dependencies invariant. DEBUG({ @@ -143,8 +143,8 @@ public: changeset_ty Run(); - /// GetTestResult - Get the test result for the active set \arg Changes with - /// \arg Required changes from the cache, executing the test if necessary. + /// GetTestResult - Get the test result for the active set \p Changes with + /// \p Required changes from the cache, executing the test if necessary. /// /// \param Changes - The set of active changes being minimized, which should /// have their pred closure included in the test. |