2018-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr78742.c
blob75601d4392f744e9847f8887d13c37ce99cb3977
1 /* { dg-do compile } */
2 /* { dg-require-effective-target int128 } */
3 /* { dg-require-effective-target alloca } */
5 void foo();
7 void func()
9 int m;
11 int tab[m];
13 __int128 j;
14 for(; j; j++)
16 tab[j] = 0;
17 tab[j+1] = 0;
20 foo();