Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / PGOProfile / mismatched-inalloca.ll
bloba403835bbe1f934f79a082218574f7f46252e4e0
1 ; RUN: opt -passes=pgo-icall-prom -profile-summary-hot-count=10 -S < %s -pass-remarks-output=- | FileCheck %s
3 ; CHECK: inalloca mismatch
5 define void @a(ptr %0) !prof !0 {
6   ret void
9 define void @b(ptr %v, ptr %p) !prof !1 {
10 ; CHECK-LABEL: @b
11 ; CHECK-NEXT: load
12 ; CHECK-NEXT: call void {{.*}}(ptr inalloca(i64)
13 ; CHECK-NEXT: ret void
14   %a = load ptr, ptr %v
15   call void %a(ptr inalloca(i64) %p), !prof !2
16   ret void
19 !0 = !{!"function_entry_count", i64 36}
20 !1 = !{!"function_entry_count", i64 1}
21 !2 = !{!"VP", i32 0, i64 18, i64 12157170054180749580, i64 18}