1 /* { dg-require-stack-size "1024+16" } */
2 
3 extern int nc;
f(void)4 void f(void)
5 {
6     unsigned char resp[1024];
7     int c;
8     int bl = 0;
9     unsigned long long *dwords = (unsigned long long *)(resp + 5);
10     for (c=0; c<nc; c++)
11     {
12         ff(dwords[bl/64]);
13         bl++;
14     }
15 }
16