1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes
2 ; RUN: opt -passes=argpromotion,mem2reg -S < %s | FileCheck %s
3 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
5 ; Checks if !prof metadata is corret in deadargelim.
7 define void @caller() #0 {
8 ; CHECK-LABEL: define {{[^@]+}}@caller() {
9 ; CHECK-NEXT: call void @promote_i32_ptr(i32 42), !prof [[PROF0:![0-9]+]]
10 ; CHECK-NEXT: ret void
14 call void @promote_i32_ptr(ptr %x), !prof !0
18 define internal void @promote_i32_ptr(ptr %xp) !prof !1 {
19 ; CHECK-LABEL: define {{[^@]+}}@promote_i32_ptr
20 ; CHECK-SAME: (i32 [[XP_0_VAL:%.*]]) !prof [[PROF1:![0-9]+]] {
21 ; CHECK-NEXT: call void @use_i32(i32 [[XP_0_VAL]])
22 ; CHECK-NEXT: ret void
24 %x = load i32, ptr %xp
25 call void @use_i32(i32 %x)
29 declare void @use_i32(i32)
31 !0 = !{!"branch_weights", i32 30}
32 !1 = !{!"function_entry_count", i64 100}