summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-28 00:06:07 +0000
committerChris Lattner <sabre@nondot.org>2004-11-28 00:06:07 +0000
commit393db9ddfd24480350efbba66b3ed4a570e5c06c (patch)
tree425ad55f53e79894bcca8006be9a9f810b86032a /test
parenteeeff013cd908cd68808641dbfad8e256ecb3bfe (diff)
downloadllvm-393db9ddfd24480350efbba66b3ed4a570e5c06c.tar.gz
llvm-393db9ddfd24480350efbba66b3ed4a570e5c06c.tar.bz2
llvm-393db9ddfd24480350efbba66b3ed4a570e5c06c.tar.xz
New testcase for PR244
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18294 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2004-11-27-StaticFunctionRedeclare.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CFrontend/2004-11-27-StaticFunctionRedeclare.c b/test/CFrontend/2004-11-27-StaticFunctionRedeclare.c
new file mode 100644
index 0000000000..abc6fbbff6
--- /dev/null
+++ b/test/CFrontend/2004-11-27-StaticFunctionRedeclare.c
@@ -0,0 +1,14 @@
+// RUN: %llvmgcc -S 2004-11-27-StaticFunctionRedeclare.c -o - | gccas | llvm-dis | not grep 'declare int.*func'
+
+// There should not be an unresolved reference to func here. Believe it or not,
+// the "expected result" is a function named 'func' which is internal and
+// referenced by bar().
+
+// This is PR244
+
+static int func();
+void bar() {
+ int func();
+ foo(func);
+}
+static int func(char** A, char ** B) {}