blob: d7b69a1827e9d248a30183a92836fec5cf6e5bcd [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-pre -fno-tree-pta -fcompare-debug" } */
struct S
{
};
void
baz (void)
{
struct S s;
&s;
}
int bar (void);
void
foo (void)
{
if (bar ())
baz ();
}