From: NAKAMURA Takumi Date: Wed, 4 Sep 2013 02:10:32 +0000 (+0000) Subject: MCDwarf.h: Prune a few stray \param(s). [-Wdocumentation] X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=06351cd0ff4146fa40ba9eb76bc10c5c6cb08616;p=oota-llvm.git MCDwarf.h: Prune a few stray \param(s). [-Wdocumentation] \param should be used to describe individual parameters. Use a command like \a or \c for visual enhancements. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189905 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCDwarf.h b/include/llvm/MC/MCDwarf.h index 5ca1be61b0c..3366fc95475 100644 --- a/include/llvm/MC/MCDwarf.h +++ b/include/llvm/MC/MCDwarf.h @@ -335,7 +335,7 @@ public: return MCCFIInstruction(OpDefCfaOffset, L, 0, -Offset, ""); } - /// \brief .cfi_adjust_cfa_offset Same as .cfi_def_cfa_offset, but \param + /// \brief .cfi_adjust_cfa_offset Same as .cfi_def_cfa_offset, but /// Offset is a relative value that is added/subtracted from the previous /// offset. static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int Adjustment) { @@ -357,8 +357,8 @@ public: return MCCFIInstruction(OpRelOffset, L, Register, Offset, ""); } - /// \brief .cfi_register Previous value of \param Register1 is saved in - /// register \param Register2. + /// \brief .cfi_register Previous value of Register1 is saved in + /// register Register2. static MCCFIInstruction createRegister(MCSymbol *L, unsigned Register1, unsigned Register2) { return MCCFIInstruction(OpRegister, L, Register1, Register2);