@@ -163,7 +163,7 @@ class ELFAsmParser : public MCAsmParserExtension {
163
163
164
164
} // end anonymous namespace
165
165
166
- // / ParseDirectiveSymbolAttribute
166
+ // / parseDirectiveSymbolAttribute
167
167
// / ::= { ".local", ".weak", ... } [ identifier ( , identifier )* ]
168
168
bool ELFAsmParser::parseDirectiveSymbolAttribute (StringRef Directive, SMLoc) {
169
169
MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
@@ -746,7 +746,7 @@ static MCSymbolAttr MCAttrForString(StringRef Type) {
746
746
.Default (MCSA_Invalid);
747
747
}
748
748
749
- // / ParseDirectiveELFType
749
+ // / parseDirectiveELFType
750
750
// / ::= .type identifier , STT_<TYPE_IN_UPPER_CASE>
751
751
// / ::= .type identifier , #attribute
752
752
// / ::= .type identifier , @attribute
@@ -803,7 +803,7 @@ bool ELFAsmParser::parseDirectiveType(StringRef, SMLoc) {
803
803
return false ;
804
804
}
805
805
806
- // / ParseDirectiveIdent
806
+ // / parseDirectiveIdent
807
807
// / ::= .ident string
808
808
bool ELFAsmParser::parseDirectiveIdent (StringRef, SMLoc) {
809
809
if (getLexer ().isNot (AsmToken::String))
@@ -821,7 +821,7 @@ bool ELFAsmParser::parseDirectiveIdent(StringRef, SMLoc) {
821
821
return false ;
822
822
}
823
823
824
- // / ParseDirectiveSymver
824
+ // / parseDirectiveSymver
825
825
// / ::= .symver foo, bar2@zed
826
826
bool ELFAsmParser::parseDirectiveSymver (StringRef, SMLoc) {
827
827
StringRef OriginalName, Name, Action;
@@ -858,7 +858,7 @@ bool ELFAsmParser::parseDirectiveSymver(StringRef, SMLoc) {
858
858
return false ;
859
859
}
860
860
861
- // / ParseDirectiveVersion
861
+ // / parseDirectiveVersion
862
862
// / ::= .version string
863
863
bool ELFAsmParser::parseDirectiveVersion (StringRef, SMLoc) {
864
864
if (getLexer ().isNot (AsmToken::String))
@@ -882,7 +882,7 @@ bool ELFAsmParser::parseDirectiveVersion(StringRef, SMLoc) {
882
882
return false ;
883
883
}
884
884
885
- // / ParseDirectiveWeakref
885
+ // / parseDirectiveWeakref
886
886
// / ::= .weakref foo, bar
887
887
bool ELFAsmParser::parseDirectiveWeakref (StringRef, SMLoc) {
888
888
// FIXME: Share code with the other alias building directives.
0 commit comments