repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs in register stack pass.
[llvm/zpu.git]
/
test
/
CodeGen
/
X86
/
memmove-2.ll
blob
68a9f4dfb9cb97531b292bda6505a3f9b81ac0a9
1
; RUN: llc < %s -march=x86 -mtriple=i686-pc-linux-gnu | not grep call
2
3
declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a)
4
5
define void @foo(i8* noalias %d, i8* noalias %s)
6
{
7
call void @llvm.memmove.i64(i8* %d, i8* %s, i64 32, i32 1)
8
ret void
9
}