@@ -213,7 +213,7 @@ class M88kAsmParser : public MCTargetAsmParser {
213
213
}
214
214
215
215
bool ParseDirective (AsmToken DirectiveID) override ;
216
- bool ParseInstruction (ParseInstructionInfo &Info, StringRef Name,
216
+ bool parseInstruction (ParseInstructionInfo &Info, StringRef Name,
217
217
SMLoc NameLoc, OperandVector &Operands) override ;
218
218
bool parseRegister (MCRegister &RegNo, SMLoc &StartLoc,
219
219
SMLoc &EndLoc) override ;
@@ -242,7 +242,7 @@ class M88kAsmParser : public MCTargetAsmParser {
242
242
return parsePCRel (Operands, 28 );
243
243
}
244
244
245
- bool MatchAndEmitInstruction (SMLoc IdLoc, unsigned &Opcode,
245
+ bool matchAndEmitInstruction (SMLoc IdLoc, unsigned &Opcode,
246
246
OperandVector &Operands, MCStreamer &Out,
247
247
uint64_t &ErrorInfo,
248
248
bool MatchingInlineAsm) override ;
@@ -338,7 +338,7 @@ bool M88kAsmParser::ParseDirective(AsmToken DirectiveID) {
338
338
return true ;
339
339
}
340
340
341
- bool M88kAsmParser::ParseInstruction (ParseInstructionInfo &Info, StringRef Name,
341
+ bool M88kAsmParser::parseInstruction (ParseInstructionInfo &Info, StringRef Name,
342
342
SMLoc NameLoc, OperandVector &Operands) {
343
343
// First operand in MCInst is instruction mnemonic.
344
344
Operands.push_back (M88kOperand::createToken (Name, NameLoc));
@@ -671,7 +671,7 @@ ParseStatus M88kAsmParser::tryParseRegister(MCRegister &RegNo, SMLoc &StartLoc,
671
671
return ParseStatus::Success;
672
672
}
673
673
674
- bool M88kAsmParser::MatchAndEmitInstruction (SMLoc IdLoc, unsigned &Opcode,
674
+ bool M88kAsmParser::matchAndEmitInstruction (SMLoc IdLoc, unsigned &Opcode,
675
675
OperandVector &Operands,
676
676
MCStreamer &Out,
677
677
uint64_t &ErrorInfo,
0 commit comments