aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/memmove-2.ll
blob: bb5485ffd9a8dc3ab6b4ebf70500540e7a695ea1 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | llc -march=x86 | not grep call

declare void @llvm.memmove.i64(i8* %d, i8* %s, i64 %l, i32 %a)

define void @foo(i8* noalias %d, i8* noalias %s)
{
  call void @llvm.memmove.i64(i8* %d, i8* %s, i64 32, i32 1)
  ret void
}