From d6b740f3e8ec4c61aa77970eedd9a88d3ab96fdc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 5 May 2007 21:47:29 +0000 Subject: 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 --- test/CFrontend/2003-02-12-NonlocalGoto.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/CFrontend/2003-02-12-NonlocalGoto.c (limited to 'test') 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); -} - - - - - -- cgit v1.2.3