LowerBitSets.cpp: Prune incorrect \param(s). [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 22 Feb 2015 09:51:42 +0000 (09:51 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Sun, 22 Feb 2015 09:51:42 +0000 (09:51 +0000)
\param should be used as itemized.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230167 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/LowerBitSets.cpp

index 3be7dd504d938712f73b374c406ea29800cae019..9c6f6268efd42f16ae25e672868625b6a80fe4fc 100644 (file)
@@ -186,8 +186,8 @@ bool LowerBitSets::doInitialization(Module &M) {
   return false;
 }
 
-/// Build a bit set for \param BitSet using the object layouts in
-/// \param GlobalLayout.
+/// Build a bit set for BitSet using the object layouts in
+/// GlobalLayout.
 BitSetInfo LowerBitSets::buildBitSet(
     MDString *BitSet,
     const DenseMap<GlobalVariable *, uint64_t> &GlobalLayout) {
@@ -213,8 +213,8 @@ BitSetInfo LowerBitSets::buildBitSet(
   return BSB.build();
 }
 
-/// Build a test that bit \param BitOffset mod sizeof(Bits)*8 is set in
-/// \param Bits. This pattern matches to the bt instruction on x86.
+/// Build a test that bit BitOffset mod sizeof(Bits)*8 is set in
+/// Bits. This pattern matches to the bt instruction on x86.
 static Value *createMaskedBitTest(IRBuilder<> &B, Value *Bits,
                                   Value *BitOffset) {
   auto BitsType = cast<IntegerType>(Bits->getType());
@@ -228,8 +228,8 @@ static Value *createMaskedBitTest(IRBuilder<> &B, Value *Bits,
   return B.CreateICmpNE(MaskedBits, ConstantInt::get(BitsType, 0));
 }
 
-/// Build a test that bit \param BitOffset is set in \param BSI, where
-/// \param BitSetGlobal is a global containing the bits in \param BSI.
+/// Build a test that bit BitOffset is set in BSI, where
+/// BitSetGlobal is a global containing the bits in BSI.
 Value *LowerBitSets::createBitSetTest(IRBuilder<> &B, const BitSetInfo &BSI,
                                       GlobalVariable *BitSetGlobal,
                                       Value *BitOffset) {