comparison gcc/testsuite/gcc.c-torture/compile/pr77754-6.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 // { dg-require-effective-target alloca }
2 /* PR c/77754 */
3
4 int fn3();
5
6 void fn4(int (*)[fn3 ()][fn3 () + 1][fn3 () + 2], struct S { int a[fn3 ()]; } *);
7
8 void fn1() {
9 int a[10][fn3 ()][fn3 () + 1][fn3 () + 2];
10 fn4 (a, 0);
11 }