From 03261851a10dd2d6900a0a00a7515a0a46fb5d76 Mon Sep 17 00:00:00 2001 From: Ranjith Kumaran Date: Fri, 17 Mar 2000 22:48:54 +0000 Subject: 20000317 sourceware import --- libgloss/testsuite/libgloss.all/array.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libgloss/testsuite/libgloss.all/array.c (limited to 'libgloss/testsuite/libgloss.all/array.c') diff --git a/libgloss/testsuite/libgloss.all/array.c b/libgloss/testsuite/libgloss.all/array.c new file mode 100644 index 000000000..14b6fdb29 --- /dev/null +++ b/libgloss/testsuite/libgloss.all/array.c @@ -0,0 +1,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 +static short aa[64][64]; +static int bb[500]; + +main() +{ + static short cc[64][64]; + static int dd[500]; + pass ("large arrays"); + fflush(stdout); +} -- cgit v1.2.3