http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32811
Richard Guenther changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32811
Christian Häggström changed:
What|Removed |Added
CC||gcc at kalvdans dot
--- Comment #2 from adam at consulting dot net dot nz 2010-07-13 23:19
---
This issue needs to be revisited with the advent of asm goto:
__attribute__ ((noreturn)) void noreturn_via_asm_goto() {
loop:
asm goto ("jmp %l[loop]\n" : : : : loop);
}
int main() {}
$ gcc-4.5 -std=gnu99 -
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-07-18 18:31 ---
I think this is expected and maybe not going to be fixed as inline-asm cannot
change the control flow at all.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32811