]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.c-torture/compile/pr77754-2.c
[testsuite] Add missing dg-require-effective-target alloca
[thirdparty/gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr77754-2.c
1 // { dg-require-effective-target alloca }
2 /* PR c/77754 */
3
4 int fn3();
5
6 void (**fn5) (int[][fn3 ()]);
7
8 void fn1 () {
9 int a[10][fn3 ()];
10 (**fn5) (a);
11 }