summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-15 22:14:46 +0000
committerChris Lattner <sabre@nondot.org>2004-02-15 22:14:46 +0000
commitb83530f9565b4a142671dd59d93c6ea69754bf03 (patch)
treef89f28591a48d5397c23f12885fd8c3440a810df /test
parentf11800b718909a334a1130997523419ae3e0f06e (diff)
downloadexternal_llvm-b83530f9565b4a142671dd59d93c6ea69754bf03.zip
external_llvm-b83530f9565b4a142671dd59d93c6ea69754bf03.tar.gz
external_llvm-b83530f9565b4a142671dd59d93c6ea69754bf03.tar.bz2
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11480 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CBackend/2004-02-15-PreexistingExternals.llx16
-rw-r--r--test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx16
2 files changed, 32 insertions, 0 deletions
diff --git a/test/CBackend/2004-02-15-PreexistingExternals.llx b/test/CBackend/2004-02-15-PreexistingExternals.llx
new file mode 100644
index 0000000..1c07708
--- /dev/null
+++ b/test/CBackend/2004-02-15-PreexistingExternals.llx
@@ -0,0 +1,16 @@
+; The intrinsic lowering pass was lowering intrinsics like llvm.memcpy to
+; explicitly specified prototypes, inserting a new function if the old one
+; didn't exist. This caused there to be two external memcpy functions in
+; this testcase for example, which caused the CBE to mangle one, screwing
+; everything up. :( Test that this does not happen anymore.
+;
+; RUN: llvm-as < %s | llc -march=c | not grep _memcpy
+
+declare void %llvm.memcpy(sbyte*, sbyte*, uint,uint)
+declare float* %memcpy(int*, uint,int)
+
+int %test(sbyte *%A, sbyte* %B, int* %C) {
+ call float* %memcpy(int* %C, uint 4, int 17)
+ call void %llvm.memcpy(sbyte* %A, sbyte* %B, uint 123, uint 14)
+ ret int 7
+}
diff --git a/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx b/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx
new file mode 100644
index 0000000..1c07708
--- /dev/null
+++ b/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx
@@ -0,0 +1,16 @@
+; The intrinsic lowering pass was lowering intrinsics like llvm.memcpy to
+; explicitly specified prototypes, inserting a new function if the old one
+; didn't exist. This caused there to be two external memcpy functions in
+; this testcase for example, which caused the CBE to mangle one, screwing
+; everything up. :( Test that this does not happen anymore.
+;
+; RUN: llvm-as < %s | llc -march=c | not grep _memcpy
+
+declare void %llvm.memcpy(sbyte*, sbyte*, uint,uint)
+declare float* %memcpy(int*, uint,int)
+
+int %test(sbyte *%A, sbyte* %B, int* %C) {
+ call float* %memcpy(int* %C, uint 4, int 17)
+ call void %llvm.memcpy(sbyte* %A, sbyte* %B, uint 123, uint 14)
+ ret int 7
+}