summaryrefslogtreecommitdiffstats
path: root/llvm/test/CFrontend
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
commit4aa650679173612f3ce2c35f1609e585d8e8ce35 (patch)
tree9b043c66d145aaa92b9d4255a3d73805e9f37cdc /llvm/test/CFrontend
parent1f8de097d7cf6ee2abf7172f263b581f394ba8b5 (diff)
downloadbcm5719-llvm-4aa650679173612f3ce2c35f1609e585d8e8ce35.tar.gz
bcm5719-llvm-4aa650679173612f3ce2c35f1609e585d8e8ce35.zip
this tests for a missing feature. Move it to PR1391 instead of being an
xfailed testcase llvm-svn: 36794
Diffstat (limited to 'llvm/test/CFrontend')
-rw-r--r--llvm/test/CFrontend/2003-02-12-NonlocalGoto.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/llvm/test/CFrontend/2003-02-12-NonlocalGoto.c b/llvm/test/CFrontend/2003-02-12-NonlocalGoto.c
deleted file mode 100644
index 3be48df64bb..00000000000
--- a/llvm/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);
-}
-
-
-
-
-
OpenPOWER on IntegriCloud