diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-03-31 14:15:07 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-03-31 14:15:07 +0000 |
| commit | 2378d4c0ce534e2e1be5fa5f63b65194661cf80e (patch) | |
| tree | 409375144e3003a047188bf456b2a735c8dd4562 | |
| parent | 1c1f487654d3ccf35c0b6b292e8bd5d4f2ad8c07 (diff) | |
| download | bcm5719-llvm-2378d4c0ce534e2e1be5fa5f63b65194661cf80e.tar.gz bcm5719-llvm-2378d4c0ce534e2e1be5fa5f63b65194661cf80e.zip | |
Capitalize the D in parseDirectiveGpDWord.
DWord seems to be the canonical way to camel case dword in llvm.
Thanks to Daniel Sander for noticing.
llvm-svn: 205191
| -rw-r--r-- | llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index 9ea2522b966..7a731eb3a09 100644 --- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -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; } |

