PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / pr42706.c
blob9c5f43af36fbba3720c081fcc7dd933833c55951
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-early-inlining -fipa-sra" } */
4 struct S
6 float red;
7 int green;
8 void *blue;
9 };
11 extern int gi;
12 static int foo ();
14 int
15 bar (void)
17 foo ();
18 return 0;
21 static int
22 foo (struct S s)
24 gi = s.green;
25 return 0;