blob: 1bd328c3cc3f2b3e2779d5c72e82354e51859232 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
; 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
}
|