summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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);
-}
-
-
-
-
-