[llvm] r289057 - Prune unused \param(s) in r289050. [-Wdocumentation]
NAKAMURA Takumi via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 8 07:00:13 PST 2016
Author: chapuni
Date: Thu Dec 8 09:00:12 2016
New Revision: 289057
URL: http://llvm.org/viewvc/llvm-project?rev=289057&view=rev
Log:
Prune unused \param(s) in r289050. [-Wdocumentation]
Modified:
llvm/trunk/include/llvm/Target/TargetLowering.h
Modified: llvm/trunk/include/llvm/Target/TargetLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLowering.h?rev=289057&r1=289056&r2=289057&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLowering.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLowering.h Thu Dec 8 09:00:12 2016
@@ -3047,8 +3047,6 @@ public:
/// respectively, each computing an n/2-bit part of the result.
/// \param Result A vector that will be filled with the parts of the result
/// in little-endian order.
- /// \param HalfVT The value type to use for the result nodes.
- /// \param OnlyLegalOrCustom Only legal or custom instructions are used.
/// \param LL Low bits of the LHS of the MUL. You can use this parameter
/// if you want to control how low bits are extracted from the LHS.
/// \param LH High bits of the LHS of the MUL. See LL for meaning.
@@ -3064,7 +3062,6 @@ public:
/// Expand a MUL into two nodes. One that computes the high bits of
/// the result and one that computes the low bits.
/// \param HiLoVT The value type to use for the Lo and Hi nodes.
- /// \param OnlyLegalOrCustom Only legal or custom instructions are used.
/// \param LL Low bits of the LHS of the MUL. You can use this parameter
/// if you want to control how low bits are extracted from the LHS.
/// \param LH High bits of the LHS of the MUL. See LL for meaning.
More information about the llvm-commits
mailing list