diff --git a/llvm/test/Regression/CFrontend/2004-02-20-StaticRedeclare.c.tr b/llvm/test/Regression/CFrontend/2004-02-20-StaticRedeclare.c.tr deleted file mode 100644 index 13acd816bbbe..000000000000 --- a/llvm/test/Regression/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) { -}