Skip to content

Commit 1b772f9

Browse files
committed
Fix comment typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127197 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 3116dce commit 1b772f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Target/ARM/ARMISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2691,8 +2691,8 @@ ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const {
26912691
// If one of the operand is zero, it's safe to ignore the NaN case since
26922692
// we only care about equality comparisons.
26932693
(SeenZero || (DAG.isKnownNeverNaN(LHS) && DAG.isKnownNeverNaN(RHS)))) {
2694-
// If unsafe fp math optimization is enabled and there are no othter uses of
2695-
// the CMP operands, and the condition code is EQ oe NE, we can optimize it
2694+
// If unsafe fp math optimization is enabled and there are no other uses of
2695+
// the CMP operands, and the condition code is EQ or NE, we can optimize it
26962696
// to an integer comparison.
26972697
if (CC == ISD::SETOEQ)
26982698
CC = ISD::SETEQ;

0 commit comments

Comments
 (0)