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
}