[llvm] r230480 - GlobalLayoutBuilder::addFragment(): Prune incorrect usage of \param(s). [-Wdocumentation]

NAKAMURA Takumi geek4civic at gmail.com
Wed Feb 25 03:04:36 PST 2015


Author: chapuni
Date: Wed Feb 25 05:04:36 2015
New Revision: 230480

URL: http://llvm.org/viewvc/llvm-project?rev=230480&view=rev
Log:
GlobalLayoutBuilder::addFragment(): Prune incorrect usage of \param(s). [-Wdocumentation]

Modified:
    llvm/trunk/include/llvm/Transforms/IPO/LowerBitSets.h

Modified: llvm/trunk/include/llvm/Transforms/IPO/LowerBitSets.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Transforms/IPO/LowerBitSets.h?rev=230480&r1=230479&r2=230480&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Transforms/IPO/LowerBitSets.h (original)
+++ llvm/trunk/include/llvm/Transforms/IPO/LowerBitSets.h Wed Feb 25 05:04:36 2015
@@ -131,9 +131,9 @@ struct GlobalLayoutBuilder {
   GlobalLayoutBuilder(uint64_t NumObjects)
       : Fragments(1), FragmentMap(NumObjects) {}
 
-  /// Add \param F to the layout while trying to keep its indices contiguous.
-  /// If a previously seen fragment uses any of \param F's indices, that
-  /// fragment will be laid out inside \param F.
+  /// Add F to the layout while trying to keep its indices contiguous.
+  /// If a previously seen fragment uses any of F's indices, that
+  /// fragment will be laid out inside F.
   void addFragment(const std::set<uint64_t> &F);
 };
 





More information about the llvm-commits mailing list