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
This commit is contained in:
Chris Lattner 2007-05-05 21:47:29 +00:00
parent e9f0f48272
commit d6b740f3e8

View File

@ -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);
}