Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / IndVarSimplify / eliminate-overflow-modified.ll
blobb91c1aeaa7128629ab8fd7218f4174af9c5151e2
1 ; RUN: opt < %s -passes=indvars -S -o - | FileCheck %s
3 ; When eliminating the overflow intrinsic the indvars pass would incorrectly
4 ; return a false Modified status. This was caught by the pass return
5 ; status check that is hidden under EXPENSIVE_CHECKS.
7 ; CHECK-LABEL: for.body:
8 ; CHECK-NEXT: %0 = phi i16 [ %1, %for.body ], [ undef, %for.body.preheader ]
9 ; CHECK-NEXT: %1 = add nsw i16 %0, -1
10 ; CHECK-NEXT: %cmp = icmp sgt i16 %1, 0
11 ; CHECK-NEXT:  call void @llvm.assume(i1 %cmp)
13 ; Function Attrs: nounwind
14 define void @foo() #0 {
15 entry:
16   %cmp1 = icmp sgt i16 undef, 0
17   br i1 %cmp1, label %for.body.preheader, label %for.end
19 for.body.preheader:                               ; preds = %entry
20   br label %for.body
22 for.body:                                         ; preds = %for.body.preheader, %for.body
23   %0 = phi i16 [ %2, %for.body ], [ undef, %for.body.preheader ]
24   %1 = call { i16, i1 } @llvm.sadd.with.overflow.i16(i16 %0, i16 -1)
25   %2 = extractvalue { i16, i1 } %1, 0
26   %cmp = icmp sgt i16 %2, 0
27   call void @llvm.assume(i1 %cmp)
28   br label %for.body
30 for.end:                                          ; preds = %entry
31   ret void
34 ; Function Attrs: nounwind readnone speculatable willreturn
35 declare { i16, i1 } @llvm.sadd.with.overflow.i16(i16, i16) #1
37 ; Function Attrs: nounwind willreturn
38 declare void @llvm.assume(i1) #2
40 attributes #0 = { nounwind }
41 attributes #1 = { nounwind readnone speculatable willreturn }
42 attributes #2 = { nounwind willreturn }
44 !llvm.ident = !{!0}
46 !0 = !{!"clang version 12.0.0"}