blob: df5510071b990fe9a624c74f4dd860a7c96fc169 [file] [log] [blame]
/* PR debug/43084 */
/* { dg-do compile } */
/* { dg-options "-O1 -fipa-struct-reorg -fwhole-program -fcompare-debug" } */
/* { dg-xfail-if "" { powerpc-ibm-aix* } { "*" } { "" } } */
struct S
{
int a;
};
int
main ()
{
struct S s;
struct S *p = &s;
return p->a;
}