New test case.
[oota-llvm.git] / test / CodeGen / ARM / memfunc.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm
2
3 void %f() {
4 entry:
5         call void %llvm.memmove.i32( sbyte* null, sbyte* null, uint 64, uint 0 )
6         call void %llvm.memcpy.i32( sbyte* null, sbyte* null, uint 64, uint 0 )
7         call void %llvm.memset.i32( sbyte* null, ubyte 64, uint 0, uint 0 )
8         unreachable
9 }
10
11 declare void %llvm.memmove.i32(sbyte*, sbyte*, uint, uint)
12 declare void %llvm.memcpy.i32(sbyte*, sbyte*, uint, uint)
13 declare void %llvm.memset.i32(sbyte*, ubyte, uint, uint)