pr27639.c   [plain text]


/* { dg-do compile } */
/* { dg-options "-O2 -std=c99" } */

char heap[50000];

int
main ()
{
  for (unsigned ix = sizeof (heap); ix--;)
    heap[ix] = ix;
  return 0;
}