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
/
20040313-1.c
blob
c05fe730f0c24e126257c571878eb2562814ff6a
1
/* PR middle-end/14470 */
2
/* Origin: Lodewijk Voge <lvoge@cs.vu.nl> */
3
4
extern
void
abort
(
void
);
5
6
int
main
()
7
{
8
int
t
[
1025
] = {
1024
},
d
;
9
10
d
=
0
;
11
d
=
t
[
d
]++;
12
if
(
t
[
0
] !=
1025
)
13
abort
();
14
if
(
d
!=
1024
)
15
abort
();
16
return
0
;
17
}