OSDN Git Service

2007-06-01 Geoffrey Keating <geoffk@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr27639.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -std=c99" } */
3
4 char heap[50000];
5
6 int
7 main ()
8 {
9   for (unsigned ix = sizeof (heap); ix--;)
10     heap[ix] = ix;
11   return 0;
12 }