[llvm] r240210 - TargetInstrInfo.h: Fix r240192. [-Wdocumentation]
NAKAMURA Takumi
geek4civic at gmail.com
Fri Jun 19 20:53:18 PDT 2015
Author: chapuni
Date: Fri Jun 19 22:53:18 2015
New Revision: 240210
URL: http://llvm.org/viewvc/llvm-project?rev=240210&view=rev
Log:
TargetInstrInfo.h: Fix r240192. [-Wdocumentation]
Modified:
llvm/trunk/include/llvm/Target/TargetInstrInfo.h
Modified: llvm/trunk/include/llvm/Target/TargetInstrInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetInstrInfo.h?rev=240210&r1=240209&r2=240210&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetInstrInfo.h (original)
+++ llvm/trunk/include/llvm/Target/TargetInstrInfo.h Fri Jun 19 22:53:18 2015
@@ -724,7 +724,7 @@ public:
/// order since the pattern evaluator stops checking as soon as it finds a
/// faster sequence.
/// \param Root - Instruction that could be combined with one of its operands
- /// \param Patterns - Vector of possible combination patterns
+ /// \param Pattern - Vector of possible combination patterns
virtual bool getMachineCombinerPatterns(
MachineInstr &Root,
SmallVectorImpl<MachineCombinerPattern::MC_PATTERN> &Pattern) const {
@@ -735,7 +735,7 @@ public:
/// the instructions that could replace the original code sequence. The client
/// has to decide whether the actual replacement is beneficial or not.
/// \param Root - Instruction that could be combined with one of its operands
- /// \param P - Combination pattern for Root
+ /// \param Pattern - Combination pattern for Root
/// \param InsInstrs - Vector of new instructions that implement P
/// \param DelInstrs - Old instructions, including Root, that could be
/// replaced by InsInstr
More information about the llvm-commits
mailing list