aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr77754-2.c
blob: d649d7197222a606191f5970e0b9592241d9ca20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-require-effective-target alloca }
// { dg-require-effective-target indirect_calls }
/* PR c/77754 */

int fn3();

void (**fn5) (int[][fn3 ()]);

void fn1 () {
  int a[10][fn3 ()];
  (**fn5) (a);
}