brintos

brintos / llvm-project-archived public Read only

0
0
Text · 492 B · 99aff5a Raw
27 lines · plain
1; RUN: llc %s -mtriple=s390x-linux-gnu -mcpu=z10 -o - -verify-machineinstrs \2; RUN:   | FileCheck %s3 4define void @test1() #0 {5entry:6  ret void7 8; CHECK-LABEL: @test19; CHECK: brasl %r0, __fentry__10; CHECK-NOT: brcl 0, .Ltmp011; CHECK: br %r1412}13 14define void @test2() #1 {15entry:16  ret void17 18; CHECK-LABEL: @test219; CHECK-NOT: brasl %r0, __fentry__20; CHECK: brcl 0, .Ltmp021; CHECK: br %r1422}23 24attributes #0 = { "fentry-call"="true" }25attributes #1 = { "fentry-call"="true" "mnop-mcount" }26 27