blob: e19ba6f38bc33e27fd6b139eee38327f7d93c2e6 [file] [log] [blame]
Dan Gohmancc863aa2007-08-27 16:26:13 +00001; RUN: llvm-as < %s | llc -march=x86 | grep {call memmove}
2
3declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a)
4
5define void @foo(i8* %d, i8* %s, i64 %l)
6{
7 call void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 1)
8 ret void
9}