Skip to content

Commit 293e0a0

Browse files
committed
Update AArch64PostLegalizerLowering.cpp
1 parent 72233a2 commit 293e0a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Target/AArch64/GISel/AArch64PostLegalizerLowering.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,8 @@ tryAdjustICmpImmAndPred(Register RHS, CmpInst::Predicate P,
639639
// x ule c => x ult c + 1
640640
// x ugt c => s uge c + 1
641641
//
642-
assert(C != (Size == 32 ? UINT32_MAX : UINT64_MAX) && "C should not be -1 here!");
642+
assert(C != (Size == 32 ? UINT32_MAX : UINT64_MAX) &&
643+
"C should not be -1 here!");
643644
P = (P == CmpInst::ICMP_ULE) ? CmpInst::ICMP_ULT : CmpInst::ICMP_UGE;
644645
C += 1;
645646
break;

0 commit comments

Comments
 (0)