repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Adjust how NEON shifts are lowered
[llvm-core.git]
/
test
/
CodeGen
/
ARM
/
mem.ll
blob
3c9cd913add656847208a90edeae8719a30dc1e1
1
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
2
3
define void @f1() {
4
entry:
5
store i8 0, i8* null
6
ret void
7
}
8
9
; CHECK: strb
10
11
define void @f2() {
12
entry:
13
store i16 0, i16* null
14
ret void
15
}
16
17
; CHECK: strh
18