this tests for a missing feature. Move it to PR1391 instead of being an
authorChris Lattner <sabre@nondot.org>
Sat, 5 May 2007 21:47:29 +0000 (21:47 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 5 May 2007 21:47:29 +0000 (21:47 +0000)
xfailed testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36794 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2003-02-12-NonlocalGoto.c [deleted file]

diff --git a/test/CFrontend/2003-02-12-NonlocalGoto.c b/test/CFrontend/2003-02-12-NonlocalGoto.c
deleted file mode 100644 (file)
index 3be48df..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// RUN: %llvmgcc -S %s -o /dev/null -fnested-functions
-
-// XFAIL: *
-/* It is unlikely that LLVM will ever support nested functions, but if it does,
-   here is a testcase. */
-
-main()
-{
-  __label__ l;
-
-  void*x()
-  {
-    goto l;
-  }
-
-  x();
-  abort();
-  return;
-l:
-  exit(0);
-}
-
-
-
-
-