revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git] / test / CodeGen / X86 / memmove-0.ll
blobd4050689f5946a18f1bd07873e06945110f9ae68
1 ; RUN: llc < %s -march=x86 -mtriple=i686-pc-linux-gnu | grep {call      memcpy}
3 declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a)
5 define void @foo(i8* noalias %d, i8* noalias %s, i64 %l)
7   call void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 1)
8   ret void