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
/
20030209-1.c
blob
5845d67b3ca1cc681c806d38093094359cdfdb64
1
#ifdef STACK_SIZE
2
#if STACK_SIZE < 8*100*100
3
#define SKIP
4
#endif
5
#endif
6
7
#ifndef SKIP
8
double
x
[
100
][
100
];
9
int
main
()
10
{
11
int
i
;
12
13
i
=
99
;
14
x
[
i
][
0
] =
42
;
15
if
(
x
[
99
][
0
] !=
42
)
16
abort
();
17
exit
(
0
);
18
}
19
#else
20
int
21
main
()
22
{
23
exit
(
0
);
24
}
25
#endif