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
/
loop-11.c
blob
ab240cef34596a04faf054e56abd4ccdda76df9b
1
static int
a
[
199
];
2
3
static void
4
foo
()
5
{
6
int
i
;
7
for
(
i
=
198
;
i
>=
0
;
i
--)
8
a
[
i
] =
i
;
9
}
10
11
int
12
main
()
13
{
14
int
i
;
15
foo
();
16
for
(
i
=
0
;
i
<
199
;
i
++)
17
if
(
a
[
i
] !=
i
)
18
abort
();
19
return
0
;
20
}