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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000224-1.c
blob
295cc473b3e1bcbf2503dbde0f6a0958ea6d27d7
1
int
loop_1
=
100
;
2
int
loop_2
=
7
;
3
int
flag
=
0
;
4
5
int
test
(
void
)
6
{
7
int
i
;
8
int
counter
=
0
;
9
10
while
(
loop_1
>
counter
) {
11
if
(
flag
&
1
) {
12
for
(
i
=
0
;
i
<
loop_2
;
i
++) {
13
counter
++;
14
}
15
}
16
flag
++;
17
}
18
return
1
;
19
}
20
21
int
main
()
22
{
23
if
(
test
() !=
1
)
24
abort
();
25
26
exit
(
0
);
27
}
28