OSDN Git Service

* MAINTAINERS (crx port, m68hc11 port): Remove. Move maintainers
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20010518-2.c
1 /* { dg-do compile } */
2
3 /* Large static storage.  */
4
5 #include <limits.h>
6
7 static volatile char chars_1[INT_MAX / 2];
8 static volatile char chars_2[1];
9
10 int
11 foo (void)
12 {
13   chars_1[10] = 'y';
14   chars_2[0] = 'x';
15 }