From: NAKAMURA Takumi Date: Tue, 25 Jun 2013 01:14:20 +0000 (+0000) Subject: PPCAsmParser.cpp: Quote "@l/@ha" in comments. [-Wdocumentation] X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=746f7cafb2d1362de62024a6e62664c3eb3999d2;p=oota-llvm.git PPCAsmParser.cpp: Quote "@l/@ha" in comments. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184809 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp b/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp index 6e075f205bf..2aed3245507 100644 --- a/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp +++ b/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp @@ -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))