[Instrumentation] Fix a warning
[llvm-project.git] / llvm / test / Transforms / HotColdSplit / section-splitting-default.ll
blob87c7b7034f04744f5540351325aa915dccc7fce5
1 ; RUN: opt -passes=hotcoldsplit -hotcoldsplit-threshold=-1 -pass-remarks=hotcoldsplit -enable-cold-section=true -S < %s 2>&1 | FileCheck %s
3 ; This test case is copied over from split-cold-2.ll, modified
4 ; to test the `-enable-cold-section` parameter in opt.
5 ; Make sure this compiles. This test used to fail with an invalid phi node: the
6 ; two predecessors were outlined and the SSA representation was invalid.
8 ; CHECK: remark: <unknown>:0:0: fun split cold code into fun.cold.1
9 ; CHECK-LABEL: @fun
10 ; CHECK: codeRepl:
11 ; CHECK-NEXT: call void @fun.cold.1
13 ; CHECK: define {{.*}}@fun.cold.1{{.*}} [[cold_attr:#[0-9]+]] section "__llvm_cold"
14 ; CHECK: attributes [[cold_attr]] = { {{.*}}noreturn
16 define void @fun(i1 %arg) {
17 entry:
18   br i1 %arg, label %if.then, label %if.else
20 if.then:
21   ret void
23 if.else:
24   br label %if.then4
26 if.then4:
27   br i1 %arg, label %if.then5, label %if.end
29 if.then5:
30   br label %cleanup
32 if.end:
33   br label %cleanup
35 cleanup:
36   %cleanup.dest.slot.0 = phi i32 [ 1, %if.then5 ], [ 0, %if.end ]
37   unreachable