1 /* { dg-do compile } */
2 
f(char * s)3 void f(char *s)
4 {
5   signed short i;
6 
7   for (i = 0; i < 19; i = i + 1)
8     s[i] = i;
9 }
10