Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
2362bad21fdf65aca03a6825fcaea6073828f214
/
.
/
test
/
CFrontend
/
2003-02-12-NonlocalGoto.c
blob: 81d97e06b5f6bbcb20eee91c0ee54f1bc7560b36 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o /dev/null
// 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
);
}