view gcc/testsuite/gcc.c-torture/compile/pr77754-5.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// { dg-require-effective-target alloca }
/* PR c/77754 */

int fn3();

void fn4(int[][fn3 ()]);
void fn4(int x[][fn3 ()])
{
}

void fn1() {
  void fn2(int[][fn3 ()]);
  int a[10][fn3 ()];
  fn4 (a);
}