repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20040704-1.c
blob
c6b23d03258de6aefd0a175d14dbd0ea2bdc6d70
1
/* PR 16348: Make sure that condition-first false loops DTRT. */
2
3
extern
void
abort
();
4
5
int
main
()
6
{
7
for
(;
0
;)
8
{
9
abort
();
10
label
:
11
return
0
;
12
}
13
goto
label
;
14
}