From: Chris Lattner Date: Thu, 2 Mar 2006 23:56:23 +0000 (+0000) Subject: new testcases X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=14c284600c6fc8281f55a0241326ae7028a96257;p=oota-llvm.git new testcases git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26473 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Bytecode/memcpy.ll b/test/Bytecode/memcpy.ll new file mode 100644 index 00000000000..eb1c22af6af --- /dev/null +++ b/test/Bytecode/memcpy.ll @@ -0,0 +1,21 @@ +; RUN: llvm-dis %s.bc-16 -o /dev/null -f && +; RUN: llc %s.bc-16 -o /dev/null -f -march=c && +; RUN: llvm-as < %s + +void %test(int* %P, int* %Q) { +entry: + %tmp.1 = cast int* %P to sbyte* ; [#uses=2] + %tmp.3 = cast int* %Q to sbyte* ; [#uses=3] + tail call void %llvm.memcpy( sbyte* %tmp.1, sbyte* %tmp.3, uint 100000, uint 1 ) + tail call void %llvm.memcpy( sbyte* %tmp.1, sbyte* %tmp.3, ulong 100000, uint 1 ) + tail call void %llvm.memset( sbyte* %tmp.3, ubyte 14, uint 10000, uint 0 ) + tail call void %llvm.memmove( sbyte* %tmp.1, sbyte* %tmp.3, uint 123124, uint 1 ) + ret void +} + +declare void %llvm.memcpy(sbyte*, sbyte*, uint, uint) +declare void %llvm.memcpy(sbyte*, sbyte*, ulong, uint) + +declare void %llvm.memset(sbyte*, ubyte, uint, uint) + +declare void %llvm.memmove(sbyte*, sbyte*, uint, uint) diff --git a/test/Bytecode/memcpy.ll.bc-16 b/test/Bytecode/memcpy.ll.bc-16 new file mode 100644 index 00000000000..be5ea1cecd5 Binary files /dev/null and b/test/Bytecode/memcpy.ll.bc-16 differ