IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43084.c
blobc3101248af68e94756497a7cc9d7d7b98105c963
1 /* PR debug/43084 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fipa-struct-reorg -fwhole-program -fcompare-debug" } */
5 struct S
7 int a;
8 };
10 int
11 main ()
13 struct S s;
14 struct S *p = &s;
15 return p->a;