URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [libgloss/] [testsuite/] [libgloss.all/] [array.c] - Rev 300
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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); }
Go to most recent revision | Compare with Previous | Blame | View Log