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