X86: when we are auto-detecting the subtarget features, make sure we turn on
[oota-llvm.git] / test / CodeGen / X86 / fastcc3struct.ll
1 ; RUN: llc < %s -march=x86 -o %t
2 ; RUN: grep "movl       .48, %ecx" %t
3 ; RUN: grep "movl       .24, %edx" %t
4 ; RUN: grep "movl       .12, %eax" %t
5
6 %0 = type { i32, i32, i32 }
7
8 define internal fastcc %0 @ReturnBigStruct() nounwind readnone {
9 entry:
10   %0 = insertvalue %0 zeroinitializer, i32 12, 0
11   %1 = insertvalue %0 %0, i32 24, 1
12   %2 = insertvalue %0 %1, i32 48, 2
13   ret %0 %2
14 }
15