1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 
4 void i();
5   short a;
b(e)6   void b(e) char * e;
7   {
8     i();
9     b(a);
10   }
11