From: NAKAMURA Takumi Date: Sat, 20 Jun 2015 03:53:18 +0000 (+0000) Subject: TargetInstrInfo.h: Fix r240192. [-Wdocumentation] X-Git-Tag: llvmorg-3.7.0-rc1~1929 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e70c370e5e8eb5d9035c65d6c4f2a2687e099b6;p=platform%2Fupstream%2Fllvm.git TargetInstrInfo.h: Fix r240192. [-Wdocumentation] llvm-svn: 240210 --- diff --git a/llvm/include/llvm/Target/TargetInstrInfo.h b/llvm/include/llvm/Target/TargetInstrInfo.h index 0879c72..ec7aef3 100644 --- a/llvm/include/llvm/Target/TargetInstrInfo.h +++ b/llvm/include/llvm/Target/TargetInstrInfo.h @@ -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 &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