PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr44988.c
blob317eafdf7c8e2a08608ae8526ec9384c6bc816d7
1 struct S
3 int i;
4 };
6 extern void bar (struct S);
8 void
9 foo (void)
11 int i = 0;
12 bar (*(struct S *) &i);