Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vla-3.c
blob619c0422a4d36fc3158a30838b9c55ca04781029
1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu99" } */
4 /* This used to crash as we did not preserve the correct type
5 for __SIZE_TYPE__. See PR22439. */
7 char foo(__SIZE_TYPE__ n)
9 char c[1][n];
10 return c[0][0];