[AArch64] Regenerate fp16 tests.
[llvm-project.git] / llvm / test / CodeGen / PowerPC / longcall.ll
blob9645ca8d31f3c5a3c28903e72fb8ecc268e7c540
1 ; RUN: llc < %s | FileCheck %s
2 target datalayout = "E-m:e-i64:64-n32:64"
3 target triple = "powerpc64-unknown-linux-gnu"
5 ; Function Attrs: nounwind
6 define void @bar() local_unnamed_addr #0 {
7 entry:
8   tail call void @foo() #1
9   ret void
11 ; CHECK-LABEL: @bar
12 ; CHECK: ld [[FD:[0-9]+]], .LC0@toc@l({{[0-9]+}})
13 ; CHECK: ld [[ADDR:[0-9]+]], 0([[FD]])
14 ; CHECK: mtctr [[ADDR]]
15 ; CHECK: bctrl
16 ; CHECK-NOT: bl foo
17 ; CHECK: blr
20 ; CHECK: .tc foo
22 declare void @foo() local_unnamed_addr
24 attributes #0 = { nounwind "target-cpu"="ppc64" "target-features"="+longcall" }
25 attributes #1 = { nounwind }