Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20040704-1.c
blob: c6b23d03258de6aefd0a175d14dbd0ea2bdc6d70 [
file
] [
log
] [
blame
]
/* PR 16348: Make sure that condition-first false loops DTRT. */
extern
void
abort
();
int
main
()
{
for
(;
0
;)
{
abort
();
label
:
return
0
;
}
goto
label
;
}