[llvm] r206403 - Replacing a non-ASCII character in a comment with an ASCII character. Fixes a C4819 warning in MSVC.

Aaron Ballman aaron at aaronballman.com
Wed Apr 16 10:09:20 PDT 2014


Author: aaronballman
Date: Wed Apr 16 12:09:20 2014
New Revision: 206403

URL: http://llvm.org/viewvc/llvm-project?rev=206403&view=rev
Log:
Replacing a non-ASCII character in a comment with an ASCII character. Fixes a C4819 warning in MSVC.

Modified:
    llvm/trunk/lib/Target/ARM64/ARM64FastISel.cpp

Modified: llvm/trunk/lib/Target/ARM64/ARM64FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM64/ARM64FastISel.cpp?rev=206403&r1=206402&r2=206403&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM64/ARM64FastISel.cpp (original)
+++ llvm/trunk/lib/Target/ARM64/ARM64FastISel.cpp Wed Apr 16 12:09:20 2014
@@ -1819,7 +1819,7 @@ bool ARM64FastISel::SelectRem(const Inst
   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)





More information about the llvm-commits mailing list