1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-24 12:29:33 +00:00
llvm-6502/test/CodeGen/CBackend/2007-07-11-PackedStruct.ll

10 lines
161 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=c | grep {packed}
%struct.p = type <{ i16 }>
define i32 @main() {
entry:
%t = alloca %struct.p, align 2
ret i32 5
}