aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-04-14 04:47:26 +0000
committerChris Lattner <sabre@nondot.org>2006-04-14 04:47:26 +0000
commitb04f7060442dd6379b31a161df3808712fde43b3 (patch)
treef10b2ee0016f3cf5872e0b7f22af9bcb92e8a756
parent57d37252b9d7fa437cdbb7a60b2c7379fa019319 (diff)
Remove this test, there is no need to test GCC's bugs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27689 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CFrontend/2004-02-20-StaticRedeclare.c.tr13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CFrontend/2004-02-20-StaticRedeclare.c.tr b/test/CFrontend/2004-02-20-StaticRedeclare.c.tr
deleted file mode 100644
index 13acd816bb..0000000000
--- a/test/CFrontend/2004-02-20-StaticRedeclare.c.tr
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: not %llvmgcc -xc %s -S -o -
-
-// This is a malformed program that is not caught by llvmgcc3.
-// XFAIL: llvmgcc3
-
-
-int one (int a) {
- two (a, 5);
- return 0;
-}
-
-static int two (int a, int b) {
-}