[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / HoistCode.ll
blob84e96f4055e9a1b8b2fbb014c7c0bbd3ee40c87d
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=simplifycfg -hoist-common-insts=true -S | FileCheck %s
3 ; RUN: opt < %s -simplifycfg -simplifycfg-require-and-preserve-domtree=1 -hoist-common-insts=true -S | FileCheck %s
5 define void @foo(i1 %C, i32* %P) {
6 ; CHECK-LABEL: @foo(
7 ; CHECK-NEXT:  common.ret:
8 ; CHECK-NEXT:    store i32 7, i32* [[P:%.*]], align 4
9 ; CHECK-NEXT:    ret void
11   br i1 %C, label %T, label %F
12 T:              ; preds = %0
13   store i32 7, i32* %P
14   ret void
15 F:              ; preds = %0
16   store i32 7, i32* %P
17   ret void
20 define float @PR39535min(float %x) {
21 ; CHECK-LABEL: @PR39535min(
22 ; CHECK-NEXT:  entry:
23 ; CHECK-NEXT:    [[TOBOOL:%.*]] = fcmp une float [[X:%.*]], 0.000000e+00
24 ; CHECK-NEXT:    [[DOTX:%.*]] = select fast i1 [[TOBOOL]], float 0.000000e+00, float [[X]]
25 ; CHECK-NEXT:    ret float [[DOTX]]
27 entry:
28   %tobool = fcmp une float %x, 0.0
29   br i1 %tobool, label %cond.true, label %cond.false
31 cond.true:
32   br label %cond.end
34 cond.false:
35   br label %cond.end
37 cond.end:
38   %cond = phi fast float [ 0.0, %cond.true ], [ %x, %cond.false ]
39   ret float %cond