1/* PR c/5656
2   This testcase ICEd on IA-32 at -O3, due to tree inliner not converting
3   parameter assignment when using K&R syntax.  */
4
5void foo (c)
6     char c;
7{
8  (void) &c;
9}
10
11int bar (void);
12
13void baz (void)
14{
15  foo (bar ());
16}
17