mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
f755e0001a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157474 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
852 B
LLVM
35 lines
852 B
LLVM
; RUN: llc < %s -march=x86 | FileCheck %s
|
|
|
|
%0 = type { i32, i32, i32, i32 }
|
|
%1 = type { i1, i1, i1, i32 }
|
|
|
|
; CHECK: ReturnBigStruct
|
|
; CHECK: movl $24601, 12(%ecx)
|
|
; CHECK: movl $48, 8(%ecx)
|
|
; CHECK: movl $24, 4(%ecx)
|
|
; CHECK: movl $12, (%ecx)
|
|
|
|
define fastcc %0 @ReturnBigStruct() nounwind readnone {
|
|
entry:
|
|
%0 = insertvalue %0 zeroinitializer, i32 12, 0
|
|
%1 = insertvalue %0 %0, i32 24, 1
|
|
%2 = insertvalue %0 %1, i32 48, 2
|
|
%3 = insertvalue %0 %2, i32 24601, 3
|
|
ret %0 %3
|
|
}
|
|
|
|
; CHECK: ReturnBigStruct2
|
|
; CHECK: movl $48, 4(%ecx)
|
|
; CHECK: movb $1, 2(%ecx)
|
|
; CHECK: movb $1, 1(%ecx)
|
|
; CHECK: movb $0, (%ecx)
|
|
|
|
define fastcc %1 @ReturnBigStruct2() nounwind readnone {
|
|
entry:
|
|
%0 = insertvalue %1 zeroinitializer, i1 false, 0
|
|
%1 = insertvalue %1 %0, i1 true, 1
|
|
%2 = insertvalue %1 %1, i1 true, 2
|
|
%3 = insertvalue %1 %2, i32 48, 3
|
|
ret %1 %3
|
|
}
|