repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libgloss
/
testsuite
/
libgloss.all
/
array.c
blob
14b6fdb2951fd2b7a914b257687089c248744b5b
1
/* WinBond bug report
2
3
this is a compile test. At one time static arrays over 500 elements
4
didn't work. We'll test both global and local array. If it compiles at
5
all, it it passes.
6
*/
7
8
#include <stdio.h>
9
static short
aa
[
64
][
64
];
10
static int
bb
[
500
];
11
12
main
()
13
{
14
static short
cc
[
64
][
64
];
15
static int
dd
[
500
];
16
pass
(
"large arrays"
);
17
fflush
(
stdout
);
18
}