From c315a08fee1f92099d0a320231a97836060cf90f Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 7 Sep 2015 00:26:54 +0000 Subject: [PATCH] Prune utf8 chars in comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246953 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 4 ++-- lib/Transforms/Utils/SimplifyLibCalls.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index b55b834d142..77e7e6f186f 100644 --- a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/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"); diff --git a/lib/Transforms/Utils/SimplifyLibCalls.cpp b/lib/Transforms/Utils/SimplifyLibCalls.cpp index a830c9784b9..763e3c05a9d 100644 --- a/lib/Transforms/Utils/SimplifyLibCalls.cpp +++ b/lib/Transforms/Utils/SimplifyLibCalls.cpp @@ -1242,7 +1242,7 @@ Value *LibCallSimplifier::optimizeFMinFMax(CallInst *CI, IRBuilder<> &B) { return nullptr; // No-signed-zeros is implied by the definitions of fmax/fmin themselves: // "Ideally, fmax would be sensitive to the sign of zero, for example - // fmax(−0. 0, +0. 0) would return +0; however, implementation in software + // fmax(-0. 0, +0. 0) would return +0; however, implementation in software // might be impractical." FMF.setNoSignedZeros(); FMF.setNoNaNs(); -- 2.34.1