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