URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [stuct.c] - Rev 826
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; }