URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20010114-1.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* Origin: PR c/1540 from Mattias Lampe <lampe@tu-harburg.de>, adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>. GCC 2.95.2 fails, CVS GCC of 2001-01-13 passes. */ extern void abort (void); extern void exit (int); int main (void) { int array1[1] = { 1 }; int array2[2][1]= { { 1 }, { 0 } }; if (array1[0] != 1) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log