blob: b7940f6cf4d3cc51b96613e06b06cd23006260ce [file] [log] [blame]
/* PR tree-optimization/58346 */
/* { dg-do compile } */
/* { dg-options "-O" } */
struct U {};
static struct U b[1] = { };
extern void bar (struct U);
void
foo (void)
{
bar (b[0]);
}
void
baz (void)
{
foo ();
}