[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / Transforms / SampleProfile / inline-cold-callsite-samplepgo.ll
blobde2fa7cdcbfbe2a80d8713e7bd3b94178e13046f
1 ; For SamplePGO, if -profile-sample-accurate is specified, cold callsite
2 ; heuristics should be honored if the caller has no profile.
4 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/inline.prof -inline -S -inline-cold-callsite-threshold=0 | FileCheck %s
5 ; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/inline.prof -profile-sample-accurate -inline -S -inline-cold-callsite-threshold=0 | FileCheck %s --check-prefix ACCURATE
7 declare void @extern()
8 define void @callee() {
9   call void @extern()
10   ret void
13 define void @caller(i32 %y1) {
14 ; CHECK-LABEL: @caller
15 ; CHECK-NOT: call void @callee
16 ; ACCURATE-LABEL: @caller
17 ; ACCURATE: call void @callee
18   call void @callee()
19   ret void
22 define void @caller_accurate(i32 %y1) #0 {
23 ; CHECK-LABEL: @caller_accurate
24 ; CHECK: call void @callee
25 ; ACCURATE-LABEL: @caller_accurate
26 ; ACCURATE: call void @callee
27   call void @callee()
28   ret void
31 attributes #0 = { "profile-sample-accurate" }