Change the calling convention used when tail call optimization is enabled from CC_X86...
[oota-llvm.git] / test / CodeGen / X86 / tailcallbyval.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -tailcallopt | grep TAILCALL
2 ; check for the 2 byval moves
3 ; RUN: llvm-as < %s | llc -march=x86 -tailcallopt | grep movl | grep ecx | grep eax | wc -l | grep 1
4 %struct.s = type {i32, i32, i32, i32, i32, i32, i32, i32,
5                   i32, i32, i32, i32, i32, i32, i32, i32,
6                   i32, i32, i32, i32, i32, i32, i32, i32 }
7
8 define  fastcc i32 @tailcallee(%struct.s* byval %a) {
9 entry:
10         %tmp2 = getelementptr %struct.s* %a, i32 0, i32 0
11         %tmp3 = load i32* %tmp2
12         ret i32 %tmp3
13 }
14
15 define  fastcc i32 @tailcaller(%struct.s* byval %a) {
16 entry:
17         %tmp4 = tail call fastcc i32 @tailcallee(%struct.s* %a byval)
18         ret i32 %tmp4
19 }