diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-09-07 00:26:54 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-09-07 00:26:54 +0000 |
commit | 0d72539d5aad14475a8fa473886e862322365e11 (patch) | |
tree | 0d57bb107cbb9a8355ab1dbaa4cfb774738959f7 /llvm/lib/Target | |
parent | 27c1e5c2a9ff75002e94d518b05c2222877daba2 (diff) | |
download | bcm5719-llvm-0d72539d5aad14475a8fa473886e862322365e11.tar.gz bcm5719-llvm-0d72539d5aad14475a8fa473886e862322365e11.zip |
Prune utf8 chars in comments.
llvm-svn: 246953
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index b55b834d142..77e7e6f186f 100644 --- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -1539,7 +1539,7 @@ bool MipsAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc, if (JalSym->isInSection() || JalSym->isTemporary()) { if (isABI_O32()) { // If it's a local symbol and the O32 ABI is being used, we expand to: - // lw $25, 0($gp) + // lw $25, 0($gp) // R_(MICRO)MIPS_GOT16 label // addiu $25, $25, 0 // R_(MICRO)MIPS_LO16 label @@ -1563,7 +1563,7 @@ bool MipsAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc, } else if (isABI_N32() || isABI_N64()) { // If it's a local symbol and the N32/N64 ABIs are being used, // we expand to: - // lw/ld $25, 0($gp) + // lw/ld $25, 0($gp) // R_(MICRO)MIPS_GOT_DISP label // jalr $25 const MCExpr *GotDispRelocExpr = evaluateRelocExpr(JalExpr, "got_disp"); |