remove unused files
[platform/upstream/gcc48.git] / gcc / testsuite / gcc.dg / pr43084.c
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* } { "*" } { "" } } */
5
6 struct S
7 {
8   int a;
9 };
10
11 int
12 main ()
13 {
14   struct S s;
15   struct S *p = &s;
16   return p->a;
17 }