Welcome to mirror list, hosted at ThFree Co, Russian Federation.

array.c « libgloss.all « testsuite « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14b6fdb2951fd2b7a914b257687089c248744b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* WinBond bug report

   this is a compile test. At one time static arrays over 500 elements
   didn't work. We'll test both global and local array. If it compiles at
   all, it it passes.
 */

#include <stdio.h>
static short aa[64][64];
static int bb[500];

main() 
{
  static short cc[64][64];
  static int dd[500];
  pass ("large arrays");
  fflush(stdout);
}