Skip to content

Commit c8140d0

Browse files
committed
[MCParser] De-capitalize ELFAsmParser comments. NFC
1 parent ef886a2 commit c8140d0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/lib/MC/MCParser/ELFAsmParser.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ class ELFAsmParser : public MCAsmParserExtension {
163163

164164
} // end anonymous namespace
165165

166-
/// ParseDirectiveSymbolAttribute
166+
/// parseDirectiveSymbolAttribute
167167
/// ::= { ".local", ".weak", ... } [ identifier ( , identifier )* ]
168168
bool ELFAsmParser::parseDirectiveSymbolAttribute(StringRef Directive, SMLoc) {
169169
MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
@@ -746,7 +746,7 @@ static MCSymbolAttr MCAttrForString(StringRef Type) {
746746
.Default(MCSA_Invalid);
747747
}
748748

749-
/// ParseDirectiveELFType
749+
/// parseDirectiveELFType
750750
/// ::= .type identifier , STT_<TYPE_IN_UPPER_CASE>
751751
/// ::= .type identifier , #attribute
752752
/// ::= .type identifier , @attribute
@@ -803,7 +803,7 @@ bool ELFAsmParser::parseDirectiveType(StringRef, SMLoc) {
803803
return false;
804804
}
805805

806-
/// ParseDirectiveIdent
806+
/// parseDirectiveIdent
807807
/// ::= .ident string
808808
bool ELFAsmParser::parseDirectiveIdent(StringRef, SMLoc) {
809809
if (getLexer().isNot(AsmToken::String))
@@ -821,7 +821,7 @@ bool ELFAsmParser::parseDirectiveIdent(StringRef, SMLoc) {
821821
return false;
822822
}
823823

824-
/// ParseDirectiveSymver
824+
/// parseDirectiveSymver
825825
/// ::= .symver foo, bar2@zed
826826
bool ELFAsmParser::parseDirectiveSymver(StringRef, SMLoc) {
827827
StringRef OriginalName, Name, Action;
@@ -858,7 +858,7 @@ bool ELFAsmParser::parseDirectiveSymver(StringRef, SMLoc) {
858858
return false;
859859
}
860860

861-
/// ParseDirectiveVersion
861+
/// parseDirectiveVersion
862862
/// ::= .version string
863863
bool ELFAsmParser::parseDirectiveVersion(StringRef, SMLoc) {
864864
if (getLexer().isNot(AsmToken::String))
@@ -882,7 +882,7 @@ bool ELFAsmParser::parseDirectiveVersion(StringRef, SMLoc) {
882882
return false;
883883
}
884884

885-
/// ParseDirectiveWeakref
885+
/// parseDirectiveWeakref
886886
/// ::= .weakref foo, bar
887887
bool ELFAsmParser::parseDirectiveWeakref(StringRef, SMLoc) {
888888
// FIXME: Share code with the other alias building directives.

0 commit comments

Comments
 (0)