Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43084.c
blobdf5510071b990fe9a624c74f4dd860a7c96fc169
1 /* PR debug/43084 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fipa-struct-reorg -fwhole-program -fcompare-debug" } */
4 /* { dg-xfail-if "" { powerpc-ibm-aix* } { "*" } { "" } } */
6 struct S
8 int a;
9 };
11 int
12 main ()
14 struct S s;
15 struct S *p = &s;
16 return p->a;