Simplify code for calling a function where CanLowerReturn fails, fixing a small bug...
[oota-llvm.git] / test / CodeGen / X86 / bigstructret.ll
1 ; RUN: llc < %s -march=x86 | FileCheck %s
2
3 %0 = type { i32, i32, i32, i32 }
4 %1 = type { i1, i1, i1, i32 }
5
6 ; CHECK: ReturnBigStruct
7 ; CHECK: movl $24601, 12(%ecx)
8 ; CHECK: movl   $48, 8(%ecx)
9 ; CHECK: movl   $24, 4(%ecx)
10 ; CHECK: movl   $12, (%ecx)
11
12 define fastcc %0 @ReturnBigStruct() nounwind readnone {
13 entry:
14   %0 = insertvalue %0 zeroinitializer, i32 12, 0
15   %1 = insertvalue %0 %0, i32 24, 1
16   %2 = insertvalue %0 %1, i32 48, 2
17   %3 = insertvalue %0 %2, i32 24601, 3
18   ret %0 %3
19 }
20
21 ; CHECK: ReturnBigStruct2
22 ; CHECK: movl   $48, 4(%ecx)
23 ; CHECK: movb   $1, 2(%ecx)
24 ; CHECK: movb   $1, 1(%ecx)
25 ; CHECK: movb   $0, (%ecx)
26
27 define fastcc %1 @ReturnBigStruct2() nounwind readnone {
28 entry:
29   %0 = insertvalue %1 zeroinitializer, i1 false, 0
30   %1 = insertvalue %1 %0, i1 true, 1
31   %2 = insertvalue %1 %1, i1 true, 2
32   %3 = insertvalue %1 %2, i32 48, 3
33   ret %1 %3
34 }
35
36 ; CHECK: CallBigStruct2
37 ; CHECK: leal   16(%esp), {{.*}}
38 ; CHECK: call{{.*}}ReturnBigStruct2
39 ; CHECK: subl   $4, %esp
40 ; CHECK: movl   20(%esp), %eax
41 define fastcc i32 @CallBigStruct2() nounwind readnone {
42 entry:
43   %0 = call %1 @ReturnBigStruct2()
44   %1 = extractvalue %1 %0, 3
45   ret i32 %1
46 }