[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SimpleLoopUnswitch / options.ll
blob7faff4d30005540b9941432cf713fe25202ff90b
1 ; RUN: opt -passes='simple-loop-unswitch<no-trivial>' -S < %s | FileCheck %s --check-prefix=NOTRIVIAL
2 ; RUN: opt -passes='simple-loop-unswitch' -S < %s | FileCheck %s --check-prefix=TRIVIAL
3 ; RUN: opt -passes='simple-loop-unswitch<trivial>' -S < %s | FileCheck %s --check-prefix=TRIVIAL
5 declare void @some_func() noreturn
7 ; NOTRIVIAL-NOT: split
8 ; TRIVIAL: split
9 define i32 @test1(ptr %var, i1 %cond1, i1 %cond2) {
10 entry:
11   br label %loop_begin
13 loop_begin:
14   br i1 %cond1, label %continue, label %loop_exit       ; first trivial condition
16 continue:
17   %var_val = load i32, ptr %var
18   br i1 %cond2, label %do_something, label %loop_exit   ; second trivial condition
20 do_something:
21   call void @some_func() noreturn nounwind
22   br label %loop_begin
24 loop_exit:
25   ret i32 0