PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / gnu89-init-4.c
blob15e9cdb35e6302e83886f59ccd1f4623958b4415
1 /* Test for GNU extensions to compound literals are giving the correct array bounds */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu89 -W -Wall -O2" } */
5 int a[] = (int[4]){1, 1, 2};
6 int f(void)
8 int sum = 0; int i;
9 for(i = 0;i<4;i++)
10 sum = a[i];
11 return sum;