mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
10 lines
161 B
LLVM
10 lines
161 B
LLVM
|
; 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
|
||
|
}
|