[LLVMbugs] [Bug 1391] NEW: [llvm-gcc] non-local gotos not supported
bugzilla-daemon at cs.uiuc.edu
bugzilla-daemon at cs.uiuc.edu
Sat May 5 14:46:53 PDT 2007
http://llvm.org/bugs/show_bug.cgi?id=1391
Summary: [llvm-gcc] non-local gotos not supported
Product: tools
Version: 1.0
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P2
Component: llvm-gcc
AssignedTo: unassignedbugs at nondot.org
ReportedBy: sabre at nondot.org
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);
}
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
More information about the llvm-bugs
mailing list