1 /* { dg-do compile } */
2
3 typedef int a;
4 typedef char b;
5 int c;
6 void d(e, f, dst, g, avail, h) int e;
7 b *f, *dst;
8 a g, avail;
9 int h;
10 {
11 b i = *f;
12 if (e)
13 goto j;
14 while (avail) {
15 *dst = i;
16 j:
17 avail -= c;
18 }
19 }