URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr27639.c] - Rev 689
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -std=c99" } */ #if(__SIZEOF_INT__ >= 4) char heap[50000]; #else char heap[32000]; #endif int main () { for (unsigned ix = sizeof (heap); ix--;) heap[ix] = ix; return 0; }