From a1c7342e5149797004734b82a22332727cc420d9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 5 May 2007 21:47:29 +0000 Subject: [PATCH] this tests for a missing feature. Move it to PR1391 instead of being an xfailed testcase llvm-svn: 36794 --- test/CFrontend/2003-02-12-NonlocalGoto.c | 26 ------------------------ 1 file changed, 26 deletions(-) delete mode 100644 test/CFrontend/2003-02-12-NonlocalGoto.c diff --git a/test/CFrontend/2003-02-12-NonlocalGoto.c b/test/CFrontend/2003-02-12-NonlocalGoto.c deleted file mode 100644 index 3be48df64bb..00000000000 --- 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); -} - - - - -