@@ -439,9 +439,9 @@ class SystemZAsmParser : public MCTargetAsmParser {
439
439
bool HasLength = false , bool HasVectorIndex = false );
440
440
bool parseAddressRegister (Register &Reg);
441
441
442
- bool ParseDirectiveInsn (SMLoc L);
443
- bool ParseDirectiveMachine (SMLoc L);
444
- bool ParseGNUAttribute (SMLoc L);
442
+ bool parseDirectiveInsn (SMLoc L);
443
+ bool parseDirectiveMachine (SMLoc L);
444
+ bool parseGNUAttribute (SMLoc L);
445
445
446
446
ParseStatus parseAddress (OperandVector &Operands, MemoryKind MemKind,
447
447
RegisterKind RegKind);
@@ -1236,18 +1236,18 @@ ParseStatus SystemZAsmParser::parseDirective(AsmToken DirectiveID) {
1236
1236
StringRef IDVal = DirectiveID.getIdentifier ();
1237
1237
1238
1238
if (IDVal == " .insn" )
1239
- return ParseDirectiveInsn (DirectiveID.getLoc ());
1239
+ return parseDirectiveInsn (DirectiveID.getLoc ());
1240
1240
if (IDVal == " .machine" )
1241
- return ParseDirectiveMachine (DirectiveID.getLoc ());
1241
+ return parseDirectiveMachine (DirectiveID.getLoc ());
1242
1242
if (IDVal.starts_with (" .gnu_attribute" ))
1243
- return ParseGNUAttribute (DirectiveID.getLoc ());
1243
+ return parseGNUAttribute (DirectiveID.getLoc ());
1244
1244
1245
1245
return ParseStatus::NoMatch;
1246
1246
}
1247
1247
1248
1248
// / ParseDirectiveInsn
1249
1249
// / ::= .insn [ format, encoding, (operands (, operands)*) ]
1250
- bool SystemZAsmParser::ParseDirectiveInsn (SMLoc L) {
1250
+ bool SystemZAsmParser::parseDirectiveInsn (SMLoc L) {
1251
1251
MCAsmParser &Parser = getParser ();
1252
1252
1253
1253
// Expect instruction format as identifier.
@@ -1359,7 +1359,7 @@ bool SystemZAsmParser::ParseDirectiveInsn(SMLoc L) {
1359
1359
1360
1360
// / ParseDirectiveMachine
1361
1361
// / ::= .machine [ mcpu ]
1362
- bool SystemZAsmParser::ParseDirectiveMachine (SMLoc L) {
1362
+ bool SystemZAsmParser::parseDirectiveMachine (SMLoc L) {
1363
1363
MCAsmParser &Parser = getParser ();
1364
1364
if (Parser.getTok ().isNot (AsmToken::Identifier) &&
1365
1365
Parser.getTok ().isNot (AsmToken::String))
@@ -1379,7 +1379,7 @@ bool SystemZAsmParser::ParseDirectiveMachine(SMLoc L) {
1379
1379
return false ;
1380
1380
}
1381
1381
1382
- bool SystemZAsmParser::ParseGNUAttribute (SMLoc L) {
1382
+ bool SystemZAsmParser::parseGNUAttribute (SMLoc L) {
1383
1383
int64_t Tag;
1384
1384
int64_t IntegerValue;
1385
1385
if (!Parser.parseGNUAttribute (L, Tag, IntegerValue))
0 commit comments