From 31574990a10c577fbd3d3087f00a316adcaf9d4e Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 25 Feb 2015 11:04:36 +0000 Subject: [PATCH] GlobalLayoutBuilder::addFragment(): Prune incorrect usage of \param(s). [-Wdocumentation] llvm-svn: 230480 --- llvm/include/llvm/Transforms/IPO/LowerBitSets.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/Transforms/IPO/LowerBitSets.h b/llvm/include/llvm/Transforms/IPO/LowerBitSets.h index 46ee59d09643..ae75b090b49c 100644 --- a/llvm/include/llvm/Transforms/IPO/LowerBitSets.h +++ b/llvm/include/llvm/Transforms/IPO/LowerBitSets.h @@ -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 &F); };