From 9c2a703d7cf0f2210b8302ed7be26f6aaf949c59 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 22 Feb 2015 09:51:42 +0000 Subject: [PATCH] LowerBitSets.cpp: Prune incorrect \param(s). [-Wdocumentation] \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 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/Transforms/IPO/LowerBitSets.cpp b/lib/Transforms/IPO/LowerBitSets.cpp index 3be7dd504d9..9c6f6268efd 100644 --- a/lib/Transforms/IPO/LowerBitSets.cpp +++ b/lib/Transforms/IPO/LowerBitSets.cpp @@ -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 &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(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) { -- 2.34.1