OSDN Git Service

PPCAsmParser.cpp: Quote "@l/@ha" in comments. [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 25 Jun 2013 01:14:20 +0000 (01:14 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 25 Jun 2013 01:14:20 +0000 (01:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184809 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp

index 6e075f2..2aed324 100644 (file)
@@ -568,7 +568,7 @@ ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) {
   return Error(StartLoc, "invalid register name");
 }
 
-/// Extract @l/@ha modifier from expression.  Recursively scan
+/// Extract \code @l/@ha \endcode modifier from expression.  Recursively scan
 /// the expression and check for VK_PPC_LO/HI/HA
 /// symbol variants.  If all symbols with modifier use the same
 /// variant, return the corresponding PPCMCExpr::VariantKind,
@@ -654,7 +654,7 @@ ExtractModifierFromExpr(const MCExpr *E,
 }
 
 /// Parse an expression.  This differs from the default "parseExpression"
-/// in that it handles complex @l/@ha modifiers.
+/// in that it handles complex \code @l/@ha \endcode modifiers.
 bool PPCAsmParser::
 ParseExpression(const MCExpr *&EVal) {
   if (getParser().parseExpression(EVal))