blob: 3b2debc247dd344fa89f0ba1f05f16e7a360c7ce [file] [log] [blame]
; RUN: llvm-as < %s | llc -march=x86 -mtriple=i686-pc-linux-gnu | grep {call memmove}
declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a)
define void @foo(i8* %d, i8* %s, i64 %l)
{
call void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 1)
ret void
}