mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 16:53:02 +00:00
this tests for a missing feature. Move it to PR1391 instead of being an
xfailed testcase llvm-svn: 36794
This commit is contained in:
parent
c474df976f
commit
a1c7342e51
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user