projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Change memcpy/memset/memmove to have dest and source alignments.
[oota-llvm.git]
/
test
/
CodeGen
/
ARM
/
mem.ll
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