2008-01-25 Douglas Gregor <doug.gregor@gmail.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr27639.c
blob28e4223d81d4be5a35adb32a010482c09e3af570
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -std=c99" } */
4 char heap[50000];
6 int
7 main ()
9 for (unsigned ix = sizeof (heap); ix--;)
10 heap[ix] = ix;
11 return 0;