this tests for a missing feature. Move it to PR1391 instead of being an

xfailed testcase

llvm-svn: 36794
This commit is contained in:
Chris Lattner 2007-05-05 21:47:29 +00:00
parent c474df976f
commit a1c7342e51

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