PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / 20030321-1.c
blob1150c7f7619222a12b2bde605af3ee3a60803dd7
1 /* This used to ICE on s390 due to displacement overflow
2 when accessing the low-order subword. */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 struct array
9 char align[4092];
10 long long elem[2] __attribute__ ((__packed__)); /* { dg-warning "attribute ignored" "" { target default_packed } } */
13 long long
14 test (struct array *array, int i)
16 return array->elem[i];