[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / PGOProfile / mismatched-byval.ll
blob84c335c67847347d4de9615386ed12d369c8e82a
1 ; RUN: opt -passes=pgo-icall-prom -profile-summary-hot-count=10 -S < %s -pass-remarks-output=- | FileCheck %s
3 ; CHECK: byval mismatch
5 define void @a(i8* %0) !prof !0 {
6   ret void
9 define void @b(void (i64*)** %v, i64* %p) !prof !1 {
10 ; CHECK-LABEL: @b
11 ; CHECK-NEXT: load
12 ; CHECK-NEXT: call void {{.*}}(i64* byval(i64)
13 ; CHECK-NEXT: ret void
15   %a = load void (i64*)*, void (i64*)** %v
16   call void %a(i64* byval(i64) %p), !prof !2
17   ret void
20 !0 = !{!"function_entry_count", i64 36}
21 !1 = !{!"function_entry_count", i64 1}
22 !2 = !{!"VP", i32 0, i64 18, i64 12157170054180749580, i64 18}