Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -march=x86 | FileCheck %s
      2 
      3 ; CHECK: movl {{.}}12, %eax
      4 ; CHECK: movl {{.}}24, %edx
      5 ; CHECK: movl {{.}}48, %ecx
      6 
      7 %0 = type { i32, i32, i32 }
      8 
      9 define internal fastcc %0 @ReturnBigStruct() nounwind readnone {
     10 entry:
     11   %0 = insertvalue %0 zeroinitializer, i32 12, 0
     12   %1 = insertvalue %0 %0, i32 24, 1
     13   %2 = insertvalue %0 %1, i32 48, 2
     14   ret %0 %2
     15 }
     16 
     17