[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / SimpleLoopUnswitch / options.ll
blob754bd7e92244602e58e9f0b624ad5794d083b502
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(i32* %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, i32* %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