mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
921c1cad7a
llvm-svn: 5945
25 lines
214 B
C
25 lines
214 B
C
|
|
/* 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);
|
|
}
|
|
|
|
|
|
|
|
|
|
|