blob: 32a1cdb35f7cdf46bae2f18f67805e82f412e458 [file] [log] [blame]
/* PR tree-optimization/49000 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
static
foo (int x, int y)
{
return x * y;
}
static int
bar (int *z)
{
return *z;
}
void
baz (void)
{
int a = 42;
int *b = &a;
foo (bar (&a), 3);
}
void
test (void)
{
baz ();
}