mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-30 16:34:03 +00:00
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:
parent
e9f0f48272
commit
d6b740f3e8
@ -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…
Reference in New Issue
Block a user