blob: 097a35d79560c42f474a2941f0d9eec45c546d3a [file] [log] [blame]
/* PR c/5656
This testcase ICEd on IA-32 at -O3, due to tree inliner not converting
parameter assignment when using K&R syntax. */
void foo (c)
char c;
{
(void) &c;
}
int bar (void);
void baz (void)
{
foo (bar ());
}