new testcases
authorChris Lattner <sabre@nondot.org>
Thu, 2 Mar 2006 23:56:23 +0000 (23:56 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 2 Mar 2006 23:56:23 +0000 (23:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26473 91177308-0d34-0410-b5e6-96231b3b80d8

test/Bytecode/memcpy.ll [new file with mode: 0644]
test/Bytecode/memcpy.ll.bc-16 [new file with mode: 0644]

diff --git a/test/Bytecode/memcpy.ll b/test/Bytecode/memcpy.ll
new file mode 100644 (file)
index 0000000..eb1c22a
--- /dev/null
@@ -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*         ; <sbyte*> [#uses=2]
+       %tmp.3 = cast int* %Q to sbyte*         ; <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 (file)
index 0000000..be5ea1c
Binary files /dev/null and b/test/Bytecode/memcpy.ll.bc-16 differ