New testcase
authorChris Lattner <sabre@nondot.org>
Wed, 23 Jul 2003 22:02:39 +0000 (22:02 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 23 Jul 2003 22:02:39 +0000 (22:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7284 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/FunctionResolve/2003-07-23-CPR-Reference.ll [new file with mode: 0644]

diff --git a/test/Transforms/FunctionResolve/2003-07-23-CPR-Reference.ll b/test/Transforms/FunctionResolve/2003-07-23-CPR-Reference.ll
new file mode 100644 (file)
index 0000000..b9d561a
--- /dev/null
@@ -0,0 +1,10 @@
+; RUN: as < %s | opt -funcresolve | dis | not grep foo
+
+; The funcresolve pass was resolving the two foo's together in this test,
+; adding a ConstantPointerRef to one of them.  Then because of this
+; reference, it wasn't able to delete the dead declaration. :(
+
+declare int %foo(...)
+declare int %foo(int)
+
+