blob: 9864c4c311392b52200f66bf888e963e685d82ec [file] [log] [blame]
/* PR middle-end/94526 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
struct S { int val[8 * sizeof (int)]; };
void
foo (struct S *x)
{
struct S *a = x;
}
void baz (struct S);
void
bar (void)
{
struct S b;
foo (&b);
baz (b);
}