[dragonegg] non-local gotos not supported #1763
Labels
bugzilla
Issues migrated from bugzilla
enhancement
Improving things as opposed to bug fixing, e.g. new or missing feature
obsolete
Issues with old (unsupported) versions of LLVM
wontfix
Issue is real, but we can't or won't fix it. Not invalid
Extended Description
This is needed for full nested function support. Here is a testcase:
main()
{
label l;
void*x()
{
goto l;
}
x();
abort();
return;
l:
exit(0);
}
The text was updated successfully, but these errors were encountered: