[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / tailcallbyval.ll
blob8a0113a645a35d6cb920a840fca134102f93bf28
1 ; RUN: llc < %s -mtriple=i686-unknown-linux -tailcallopt | FileCheck %s
2 %struct.s = type {i32, i32, i32, i32, i32, i32, i32, i32,
3                   i32, i32, i32, i32, i32, i32, i32, i32,
4                   i32, i32, i32, i32, i32, i32, i32, i32 }
6 define  fastcc i32 @tailcallee(%struct.s* byval %a) nounwind {
7 entry:
8         %tmp2 = getelementptr %struct.s, %struct.s* %a, i32 0, i32 0
9         %tmp3 = load i32, i32* %tmp2
10         ret i32 %tmp3
11 ; CHECK: tailcallee
12 ; CHECK: movl 4(%esp), %eax
15 define  fastcc i32 @tailcaller(%struct.s* byval %a) nounwind {
16 entry:
17         %tmp4 = tail call fastcc i32 @tailcallee(%struct.s* byval %a )
18         ret i32 %tmp4
19 ; CHECK: tailcaller
20 ; CHECK: jmp tailcallee