URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [stuct.c] - Rev 154
Compare with Previous | Blame | View Log
#ifdef STACK_SIZE #define SIZE STACK_SIZE / 8 #else #define SIZE 10000000 #endif struct foo { int a, b, c; int arr[SIZE]; }; struct foo s, ss; main () { s.b = 2; s.c = 3; ss.b = 2; ss.c = 3; }