xref: /llvm-project/llvm/test/CodeGen/Hexagon/instrprof-custom.ll (revision 2208c97c1bec2512d4e47b6223db6d95a7037956)
1; RUN: llc -mtriple=hexagon -relocation-model=pic < %s | FileCheck %s
2; RUN: llc -mtriple=hexagon < %s | FileCheck %s
3
4; CHECK-LABEL: test1:
5; CHECK: {{call my_instrprof_handler|r0 = #999}}
6; CHECK-NEXT: {{call my_instrprof_handler|r0 = #999}}
7
8@handler_name = internal constant [21 x i8] c"my_instrprof_handler\00"
9
10define dllexport void @test1() local_unnamed_addr #0 {
11entry:
12  tail call void @llvm.hexagon.instrprof.custom(ptr @handler_name, i32 999)
13  ret void
14}
15
16; Function Attrs: inaccessiblememonly nofree nosync nounwind willreturn
17declare void @llvm.hexagon.instrprof.custom(ptr, i32) #1
18
19attributes #0 = { "target-features"="+hvxv68,+hvx-length128b,+hvx-qfloat,-hvx-ieee-fp,+hmxv68" }
20attributes #1 = { inaccessiblememonly nofree nosync nounwind willreturn }
21