diff options
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) |