Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / HotColdSplit / section-splitting-custom.ll
blobd7836d0994b8666c62a96f0bc44a0fa45cddd2de
1 ; RUN: opt -passes=hotcoldsplit -hotcoldsplit-threshold=-1 -pass-remarks=hotcoldsplit -enable-cold-section=true -hotcoldsplit-cold-section-name="__cold_custom" -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` and `-hotcoldsplit-cold-section-name`
5 ; parameters in opt.
6 ; Make sure this compiles. This test used to fail with an invalid phi node: the
7 ; two predecessors were outlined and the SSA representation was invalid.
9 ; CHECK: remark: <unknown>:0:0: fun split cold code into fun.cold.1
10 ; CHECK-LABEL: @fun
11 ; CHECK: codeRepl:
12 ; CHECK-NEXT: call void @fun.cold.1
14 ; CHECK: define {{.*}}@fun.cold.1{{.*}} [[cold_attr:#[0-9]+]] section "__cold_custom"
15 ; CHECK: attributes [[cold_attr]] = { {{.*}}noreturn
17 define void @fun() {
18 entry:
19   br i1 undef, label %if.then, label %if.else
21 if.then:
22   ret void
24 if.else:
25   br label %if.then4
27 if.then4:
28   br i1 undef, label %if.then5, label %if.end
30 if.then5:
31   br label %cleanup
33 if.end:
34   br label %cleanup
36 cleanup:
37   %cleanup.dest.slot.0 = phi i32 [ 1, %if.then5 ], [ 0, %if.end ]
38   unreachable