1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CodeGen/ARM/memfunc.ll

17 lines
443 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=arm
2008-02-17 21:02:20 +01:00
define void @f() {
entry:
2008-02-17 21:02:20 +01:00
call void @llvm.memmove.i32( i8* null, i8* null, i32 64, i32 0 )
call void @llvm.memcpy.i32( i8* null, i8* null, i32 64, i32 0 )
call void @llvm.memset.i32( i8* null, i8 64, i32 0, i32 0 )
unreachable
}
2008-02-17 21:02:20 +01:00
declare void @llvm.memmove.i32(i8*, i8*, i32, i32)
declare void @llvm.memcpy.i32(i8*, i8*, i32, i32)
declare void @llvm.memset.i32(i8*, i8, i32, i32)