[InstCombine] Signed saturation tests. NFC
[llvm-core.git] / test / Transforms / LoopUnroll / disable-full-unroll-by-opt.ll
blobc89948ad52cb78c9634c1711c8cfbc32407df778
1 ; Default behavior
2 ; RUN: opt < %s -passes='unroll' -S | FileCheck %s -check-prefixes=ENABLE,COMMON
4 ; Pass option
5 ; RUN: opt < %s -passes='unroll<full-unroll-max=0>'  -S | FileCheck %s -check-prefixes=DISABLE,COMMON
6 ; RUN: opt < %s -passes='unroll<full-unroll-max=30>' -S | FileCheck %s -check-prefixes=DISABLE,COMMON
7 ; RUN: opt < %s -passes='unroll<full-unroll-max=36>' -S | FileCheck %s -check-prefixes=ENABLE,COMMON
9 ; cl::opt option
10 ; RUN: opt < %s -passes='unroll' -unroll-full-max-count=0 -S | FileCheck %s -check-prefixes=DISABLE,COMMON
11 ; RUN: opt < %s -passes='unroll' -unroll-full-max-count=30 -S | FileCheck %s -check-prefixes=DISABLE,COMMON
12 ; RUN: opt < %s -passes='unroll' -unroll-full-max-count=36 -S | FileCheck %s -check-prefixes=ENABLE,COMMON
14 ; Pass option has a priority over cl::opt
15 ; RUN: opt < %s -passes='unroll<full-unroll-max=30>' -unroll-full-max-count=36 -S | FileCheck %s -check-prefixes=DISABLE,COMMON
16 ; RUN: opt < %s -passes='unroll<full-unroll-max=36>' -unroll-full-max-count=30 -S | FileCheck %s -check-prefixes=ENABLE,COMMON
18 define void @test() {
19 ; COMMON-LABEL: @test(
20  entry:
21   br label %loop
23  loop:
24   %idx = phi i32 [ 0, %entry ], [ %idx.inc, %loop ]
25   %idx.inc = add i32 %idx, 1
26   %be = icmp slt i32 %idx, 32
27   br i1 %be, label %loop, label %exit
29 ; COMMON: loop:
30 ; DISABLE:  %be = icmp slt i32 %idx, 32
31 ; ENABLE-NOT:  %be = icmp slt i32 %idx, 32
33  exit:
34   ret void