source: trunk/libs/newlib/src/libgloss/testsuite/libgloss.all/array.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 364 bytes
Line 
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>
9static short aa[64][64];
10static int bb[500];
11
12main() 
13{
14  static short cc[64][64];
15  static int dd[500];
16  pass ("large arrays");
17  fflush(stdout);
18}
Note: See TracBrowser for help on using the repository browser.