Skip to content

Commit 73e52d8

Browse files
committed
SCEV/test: fix nit
1 parent 9ed5120 commit 73e52d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/test/Analysis/ScalarEvolution/implied-via-division.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ exit:
413413
}
414414

415415
define void @swapped_predicate(i32 %n) {
416-
; Prove that (n >= 1) ===> (0 >= -n / 2).
416+
; Prove that (n s>= 1) ===> (0 s>= -n / 2).
417417
; CHECK-LABEL: 'swapped_predicate'
418418
; CHECK-NEXT: Determining loop execution counts for: @swapped_predicate
419419
; CHECK-NEXT: Loop %header: backedge-taken count is (1 + %n.div.2)<nuw><nsw>
@@ -440,7 +440,7 @@ exit:
440440
}
441441

442442
define void @swapped_predicate_neg(i32 %n) {
443-
; Prove that (n >= 1) =\=> (-n / 2 >= 0).
443+
; Prove that (n s>= 1) =\=> (-n / 2 s>= 0).
444444
; CHECK-LABEL: 'swapped_predicate_neg'
445445
; CHECK-NEXT: Determining loop execution counts for: @swapped_predicate_neg
446446
; CHECK-NEXT: Loop %header: Unpredictable backedge-taken count.

0 commit comments

Comments
 (0)