mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
16 lines
263 B
LLVM
16 lines
263 B
LLVM
|
; RUN: llvm-as < %s | llc -march=arm &&
|
||
|
; RUN: llvm-as < %s | llc -march=arm | grep strb &&
|
||
|
; RUN: llvm-as < %s | llc -march=arm | grep strh
|
||
|
|
||
|
void %f1() {
|
||
|
entry:
|
||
|
store ubyte 0, ubyte* null
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
void %f2() {
|
||
|
entry:
|
||
|
store short 0, short* null
|
||
|
ret void
|
||
|
}
|