xref: /llvm-project/llvm/test/CodeGen/PowerPC/tailcall1-64.ll (revision 88cadb894ce2b3ba72a91db84504963cf3db991d)
1; RUN: llc -relocation-model=static -verify-machineinstrs < %s -mtriple=ppc64-- -tailcallopt | grep TC_RETURNd8
2; RUN: llc -relocation-model=static -verify-machineinstrs -mtriple=ppc64-- < %s | FileCheck %s
3define dso_local fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4) {
4entry:
5	ret i32 %a3
6}
7
8define dso_local fastcc i32 @tailcaller(i32 %in1, i32 %in2) {
9entry:
10	%tmp11 = tail call fastcc i32 @tailcallee( i32 %in1, i32 %in2, i32 %in1, i32 %in2 )
11	ret i32 %tmp11
12; CHECK-LABEL: tailcaller
13; CHECK-NOT: stdu
14}
15