summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-05 21:47:29 +0000
committerChris Lattner <sabre@nondot.org>2007-05-05 21:47:29 +0000
commitd6b740f3e8ec4c61aa77970eedd9a88d3ab96fdc (patch)
tree862234dbe9f5d3552c3edcda3f574c24286d8731 /test
parente9f0f4827267d4b220ae0ac1b2c060531aa8678d (diff)
downloadllvm-d6b740f3e8ec4c61aa77970eedd9a88d3ab96fdc.tar.gz
llvm-d6b740f3e8ec4c61aa77970eedd9a88d3ab96fdc.tar.bz2
llvm-d6b740f3e8ec4c61aa77970eedd9a88d3ab96fdc.tar.xz
this tests for a missing feature. Move it to PR1391 instead of being an
xfailed testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36794 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2003-02-12-NonlocalGoto.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/CFrontend/2003-02-12-NonlocalGoto.c b/test/CFrontend/2003-02-12-NonlocalGoto.c
deleted file mode 100644
index 3be48df64b..0000000000
--- a/test/CFrontend/2003-02-12-NonlocalGoto.c
+++ /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);
-}
-
-
-
-
-