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 
foo(c)5 void foo (c)
6      char c;
7 {
8   (void) &c;
9 }
10 
11 int bar (void);
12 
baz(void)13 void baz (void)
14 {
15   foo (bar ());
16 }
17