Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
f845c74c6243a10ee5df2af003dcf81bbd0b51a0
/
.
/
test
/
CodeGen
/
X86
/
memmove-3.ll
blob: d8a419c07457addd3688ed67531f60e099dfd71b [
file
] [
log
] [
blame
]
; RUN: llc < %s -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
)
{
call
void
@llvm.memmove.i64
(
i8
*
%d
,
i8
*
%s
,
i64
32
,
i32
1
)
ret
void
}