Merge Ignore and Deprecated in .opt files.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43084.c
blobf70ed863e167727a52a639799602d2a31057c7e2
1 /* PR debug/43084 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -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;