mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-05 02:28:51 +00:00
10 lines
241 B
LLVM
10 lines
241 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86 | 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
|
||
|
}
|