aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-09-10 05:08:51 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-09-10 05:08:51 +0000
commit9ad48db6031885c38137fcd3ba919b061e272b10 (patch)
tree57594a9526e1381ab2a09cea687fac9f613021c9
parentf3e2d80770c43e2ae1e5ba0d6a944974087f57ae (diff)
Add a test case for r81431.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81432 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/FrontendC/redef-ext-inline.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/FrontendC/redef-ext-inline.c b/test/FrontendC/redef-ext-inline.c
new file mode 100644
index 0000000000..240beb1f6f
--- /dev/null
+++ b/test/FrontendC/redef-ext-inline.c
@@ -0,0 +1,6 @@
+// RUN: %llvmgcc -S %s -o -
+// rdar://7208839
+
+extern inline int f1 (void) {return 1;}
+int f3 (void) {return f1();}
+int f1 (void) {return 0;}