aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/CBackend/2007-07-11-PackedStruct.ll
blob: 6057616111844be4f9f31234a8268fc159281ba1 (plain)
1
2
3
4
5
6
7
8
9
; 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
}