fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / libgloss / testsuite / libgloss.all / array.c
blob14b6fdb2951fd2b7a914b257687089c248744b5b
1 /* WinBond bug report
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 */
8 #include <stdio.h>
9 static short aa[64][64];
10 static int bb[500];
12 main()
14 static short cc[64][64];
15 static int dd[500];
16 pass ("large arrays");
17 fflush(stdout);