1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/CBackend/2007-07-11-PackedStruct.ll
2009-09-09 00:09:15 +00:00

10 lines
151 B
LLVM

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