Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
aab3aff97bc536dca831b45a3a4dc541ae2b51fc
/
.
/
test
/
CFrontend
/
2003-02-12-NonlocalGoto.c
blob: cb84dc94569c71dc4cfd3e0063663c215ce9bcad [
file
] [
log
] [
blame
]
/* 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
);
}