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-2.c
blob
3227734fbf8bc1454d6b75cdc0ec5adcf32d9e91
1
int
a
[
2
];
2
3
f
(
b
)
4
{
5
unsigned int
i
;
6
for
(
i
=
0
;
i
<
b
;
i
++)
7
a
[
i
] =
i
-
2
;
8
}
9
10
main
()
11
{
12
a
[
0
] =
a
[
1
] =
0
;
13
f
(
2
);
14
if
(
a
[
0
] != -
2
||
a
[
1
] != -
1
)
15
abort
();
16
exit
(
0
);
17
}