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.dg/] [pr27639.c] - Rev 315
Go to most recent revision | 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; }
Go to most recent revision | Compare with Previous | Blame | View Log