[llvm] 89edda7 - IROutliner.cpp - fix Wdocumentation warnings. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 5 03:21:16 PST 2021
Author: Simon Pilgrim
Date: 2021-02-05T11:21:00Z
New Revision: 89edda7084b3dac55208d839afcb0aa194159e61
URL: https://github.com/llvm/llvm-project/commit/89edda7084b3dac55208d839afcb0aa194159e61
DIFF: https://github.com/llvm/llvm-project/commit/89edda7084b3dac55208d839afcb0aa194159e61.diff
LOG: IROutliner.cpp - fix Wdocumentation warnings. NFCI.
Added:
Modified:
llvm/lib/Transforms/IPO/IROutliner.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/IROutliner.cpp b/llvm/lib/Transforms/IPO/IROutliner.cpp
index 4b6a4f3d8fc4..fb84fc76caf1 100644
--- a/llvm/lib/Transforms/IPO/IROutliner.cpp
+++ b/llvm/lib/Transforms/IPO/IROutliner.cpp
@@ -439,7 +439,7 @@ static void findConstants(IRSimilarityCandidate &C, DenseSet<unsigned> &NotSame,
/// arguments.
/// \param [in] OutputMappings - The mapping of values that have been replaced
/// by a new output value.
-/// \param [out] EndInputs - The global value numbers for the extracted
+/// \param [out] EndInputNumbers - The global value numbers for the extracted
/// arguments.
static void mapInputsToGVNs(IRSimilarityCandidate &C,
SetVector<Value *> &CurrentInputs,
@@ -563,7 +563,7 @@ static void getCodeExtractorArguments(
/// overall function.
///
/// \param [in,out] Region - The region of code to be analyzed.
-/// \param [in] InputsGVNs - The global value numbering of the input values
+/// \param [in] InputGVNs - The global value numbering of the input values
/// collected.
/// \param [in] ArgInputs - The values of the arguments to the extracted
/// function.
@@ -1081,7 +1081,6 @@ alignOutputBlockWithAggFunc(OutlinableGroup &OG, OutlinableRegion &Region,
/// matches the needed stores for the extracted section.
/// \param [in] M - The module we are outlining from.
/// \param [in] OG - The group of regions to be outlined.
-/// \param [in] OS - The region that is being analyzed.
/// \param [in] EndBB - The final block of the extracted function.
/// \param [in,out] OutputStoreBBs - The existing output blocks.
void createSwitchStatement(Module &M, OutlinableGroup &OG, BasicBlock *EndBB,
More information about the llvm-commits
mailing list