From 8cafc53ee45880107c8a2a3b0e3f23e830e0ffaf Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Wed, 16 Apr 2014 17:09:20 +0000 Subject: [PATCH] Replacing a non-ASCII character in a comment with an ASCII character. Fixes a C4819 warning in MSVC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206403 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM64/ARM64FastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM64/ARM64FastISel.cpp b/lib/Target/ARM64/ARM64FastISel.cpp index ea9c2b54a1f..ffd56adbf20 100644 --- a/lib/Target/ARM64/ARM64FastISel.cpp +++ b/lib/Target/ARM64/ARM64FastISel.cpp @@ -1819,7 +1819,7 @@ bool ARM64FastISel::SelectRem(const Instruction *I, unsigned ISDOpcode) { BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(DivOpc), ResultReg) .addReg(Src0Reg) .addReg(Src1Reg); - // The remainder is computed as numerator – (quotient * denominator) using the + // The remainder is computed as numerator - (quotient * denominator) using the // MSUB instruction. BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(MSubOpc), ResultReg) .addReg(ResultReg)