File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3377,14 +3377,14 @@ bool isLegalCmpImmed(APInt C) {
3377
3377
3378
3378
static bool isSafeSignedCMN(SDValue Op, SelectionDAG &DAG) {
3379
3379
// 0 - INT_MIN sign wraps, so no signed wrap means cmn is safe.
3380
- if (Op-> getFlags().hasNoSignedWrap())
3380
+ if (Op. getFlags().hasNoSignedWrap())
3381
3381
return true;
3382
3382
3383
3383
// We can still figure out if the second operand is safe to use
3384
3384
// in a CMN instruction by checking if it is known to be not the minimum
3385
3385
// signed value. If it is not, then we can safely use CMN.
3386
3386
// Note: We can eventually remove this check and simply rely on
3387
- // Op-> getFlags().hasNoSignedWrap() once SelectionDAG/ISelLowering
3387
+ // Op. getFlags().hasNoSignedWrap() once SelectionDAG/ISelLowering
3388
3388
// consistently sets them appropriately when making said nodes.
3389
3389
3390
3390
KnownBits KnownSrc = DAG.computeKnownBits(Op.getOperand(1));
You can’t perform that action at this time.
0 commit comments