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
/
loop-9.c
blob
523057593a3f41167bbb2e3559ddce84b26cbc0d
1
/* Source: Neil Booth, from PR # 115. */
2
3
int
false
()
4
{
5
return
0
;
6
}
7
8
extern
void
abort
(
void
);
9
10
int
main
(
int
argc
,
char
*
argv
[])
11
{
12
int
count
=
0
;
13
14
while
(
false
() ||
count
< -
123
)
15
++
count
;
16
17
if
(
count
)
18
abort
();
19
20
return
0
;
21
}