llvm-6502/test/CodeGen/ARM/mem.ll
Rafael Espindola c391d16b49 implement STRB and STRH
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31138 91177308-0d34-0410-b5e6-96231b3b80d8
2006-10-23 20:34:27 +00:00

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
}