mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
13 lines
285 B
LLVM
13 lines
285 B
LLVM
|
; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis
|
||
|
; Make sure that SROA "scalar conversion" can handle first class aggregates.
|
||
|
|
||
|
define i64 @test({i32, i32} %A) {
|
||
|
%X = alloca i64
|
||
|
%Y = bitcast i64* %X to {i32,i32}*
|
||
|
store {i32,i32} %A, {i32,i32}* %Y
|
||
|
|
||
|
%Q = load i64* %X
|
||
|
ret i64 %Q
|
||
|
}
|
||
|
|