mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Capitalize the D in parseDirectiveGpDWord.
DWord seems to be the canonical way to camel case dword in llvm. Thanks to Daniel Sander for noticing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205191 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9982159d26
commit
1c289ab6bb
@ -212,7 +212,7 @@ class MipsAsmParser : public MCTargetAsmParser {
|
||||
|
||||
bool parseDataDirective(unsigned Size, SMLoc L);
|
||||
bool parseDirectiveGpWord();
|
||||
bool parseDirectiveGpdWord();
|
||||
bool parseDirectiveGpDWord();
|
||||
|
||||
MCSymbolRefExpr::VariantKind getVariantKind(StringRef Symbol);
|
||||
|
||||
@ -2716,9 +2716,9 @@ bool MipsAsmParser::parseDirectiveGpWord() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/// parseDirectiveGpdWord
|
||||
/// parseDirectiveGpDWord
|
||||
/// ::= .gpdword local_sym
|
||||
bool MipsAsmParser::parseDirectiveGpdWord() {
|
||||
bool MipsAsmParser::parseDirectiveGpDWord() {
|
||||
const MCExpr *Value;
|
||||
// EmitGPRel64Value requires an expression, so we are using base class
|
||||
// method to evaluate the expression.
|
||||
@ -2820,7 +2820,7 @@ bool MipsAsmParser::ParseDirective(AsmToken DirectiveID) {
|
||||
}
|
||||
|
||||
if (IDVal == ".gpdword") {
|
||||
parseDirectiveGpdWord();
|
||||
parseDirectiveGpDWord();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user