Skip to content

Commit

Permalink
Replacing a non-ASCII character in a comment with an ASCII character.…
Browse files Browse the repository at this point in the history
… Fixes a C4819 warning in MSVC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206403 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
AaronBallman committed Apr 16, 2014
1 parent b902acb commit 8cafc53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/ARM64/ARM64FastISel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8cafc53

Please sign in to comment.