[llvm] 87c8c8a - Fix unknown parameter Wdocumentation warnings. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 19 07:44:42 PDT 2021
Author: Simon Pilgrim
Date: 2021-08-19T15:40:10+01:00
New Revision: 87c8c8ae97993c7c8654f3e3ffc8bd61e36b5638
URL: https://github.com/llvm/llvm-project/commit/87c8c8ae97993c7c8654f3e3ffc8bd61e36b5638
DIFF: https://github.com/llvm/llvm-project/commit/87c8c8ae97993c7c8654f3e3ffc8bd61e36b5638.diff
LOG: Fix unknown parameter Wdocumentation warnings. NFC.
Added:
Modified:
llvm/include/llvm/Transforms/IPO/Attributor.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Transforms/IPO/Attributor.h b/llvm/include/llvm/Transforms/IPO/Attributor.h
index c3c12fd23746..b05ab69e2b5e 100644
--- a/llvm/include/llvm/Transforms/IPO/Attributor.h
+++ b/llvm/include/llvm/Transforms/IPO/Attributor.h
@@ -1150,8 +1150,6 @@ struct Attributor {
/// \param Allowed If not null, a set limiting the attribute opportunities.
/// \param DeleteFns Whether to delete functions.
/// \param RewriteSignatures Whether to rewrite function signatures.
- /// \param MaxFixedPointIterations Maximum number of iterations to run until
- /// fixpoint.
Attributor(SetVector<Function *> &Functions, InformationCache &InfoCache,
CallGraphUpdater &CGUpdater,
DenseSet<const char *> *Allowed = nullptr, bool DeleteFns = true,
@@ -1169,8 +1167,9 @@ struct Attributor {
/// \param CGUpdater Helper to update an underlying call graph.
/// \param Allowed If not null, a set limiting the attribute opportunities.
/// \param DeleteFns Whether to delete functions
- /// \param MaxFixedPointIterations Maximum number of iterations to run until
- /// fixpoint.
+ /// \param RewriteSignatures Whether to rewrite function signatures.
+ /// \param MaxFixpointIterations Maximum number of iterations to run until
+ /// fixpoint.
/// \param OREGetter A callback function that returns an ORE object from a
/// Function pointer.
/// \param PassName The name of the pass emitting remarks.
More information about the llvm-commits
mailing list