Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / HotColdSplit / forward-dfs-reaches-marked-block.ll
blob57aea5d1b3ec4ab92f6d958da5db1b3550f1e66e
1 ; RUN: opt -passes=hotcoldsplit -hotcoldsplit-threshold=0 -S < %s | FileCheck %s
3 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-apple-macosx10.14.0"
6 ; CHECK-LABEL: define {{.*}}@fun
7 ; CHECK: call {{.*}}@fun.cold.1(
8 define void @fun() {
9 entry:
10   br i1 undef, label %if.then, label %if.else
12 if.then:
13   ; This will be marked by the inverse DFS on sink-predecesors.
14   br label %sink
16 sink:
17   call void @sink()
19   ; Do not allow the forward-DFS on sink-successors to mark the block again.
20   br i1 undef, label %if.then, label %if.then.exit
22 if.then.exit:
23   ret void
25 if.else:
26   ret void
29 declare void @sink() cold