PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / uninit-14-O0.c
blobabde6ca86e6daa6066208a833c7b5c870541ae99
1 /* PR 24931 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wuninitialized" } */
5 struct p {
6 short x, y;
7 };
9 struct s {
10 int i;
11 struct p p;
14 struct s f()
16 struct s s;
17 s.p = (struct p){};
18 s.i = (s.p.x || s.p.y);
19 return s;