1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/CodeGen/ARM/mem.ll

15 lines
252 B
LLVM
Raw Normal View History

2008-02-17 21:02:20 +01:00
; RUN: llvm-as < %s | llc -march=arm | grep strb
; RUN: llvm-as < %s | llc -march=arm | grep strh
2008-02-17 21:02:20 +01:00
define void @f1() {
entry:
2008-02-17 21:02:20 +01:00
store i8 0, i8* null
ret void
}
2008-02-17 21:02:20 +01:00
define void @f2() {
entry:
2008-02-17 21:02:20 +01:00
store i16 0, i16* null
ret void
}