[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / SystemZ / fentry-insertion.ll
blobbaa0357b108245a667833dc0459fd8c7ffd77927
1 ; RUN: llc %s -mtriple=s390x-linux-gnu -mcpu=z10 -o - -verify-machineinstrs \
2 ; RUN:   | FileCheck %s
4 define void @test1() #0 {
5 entry:
6   ret void
8 ; CHECK-LABEL: @test1
9 ; CHECK: brasl %r0, __fentry__
10 ; CHECK-NOT: mcount
11 ; CHECK: br %r14
14 define void @test2() #1 {
15 entry:
16   br label %bb1
17 bb1:
18   call void @address_taken(i64 ptrtoint (ptr blockaddress(@test2, %bb1) to i64), i32 512)
19   ret void
21 ; CHECK-LABEL: @test2
22 ; CHECK: brasl %r0, __fentry__
23 ; CHECK-NOT: mcount
24 ; CHECK: br %r14
27 declare void @address_taken(i64, i32) local_unnamed_addr
28 attributes #0 = { "fentry-call"="true" }
29 attributes #1 = { inlinehint minsize noredzone nounwind optsize sspstrong "fentry-call"="true" }