diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-04-16 17:09:20 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-04-16 17:09:20 +0000 |
commit | 5f1378c2a4f247f859aa908f0a1672757062842b (patch) | |
tree | 5c9a0d1efa005b355efde0dcc7ed7a8c0205f6c7 /llvm/lib/Target/ARM64/ARM64FastISel.cpp | |
parent | db3a5dcc60996c3538d65f7a585b6f930bbb8f29 (diff) | |
download | bcm5719-llvm-5f1378c2a4f247f859aa908f0a1672757062842b.tar.gz bcm5719-llvm-5f1378c2a4f247f859aa908f0a1672757062842b.zip |
Replacing a non-ASCII character in a comment with an ASCII character. Fixes a C4819 warning in MSVC.
llvm-svn: 206403
Diffstat (limited to 'llvm/lib/Target/ARM64/ARM64FastISel.cpp')
-rw-r--r-- | llvm/lib/Target/ARM64/ARM64FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM64/ARM64FastISel.cpp b/llvm/lib/Target/ARM64/ARM64FastISel.cpp index ea9c2b54a1f..ffd56adbf20 100644 --- a/llvm/lib/Target/ARM64/ARM64FastISel.cpp +++ b/llvm/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) |