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