1 /* { dg-options "-fprofile-arcs -ftest-coverage" } */
2 /* { dg-do run { target native } } */
3
4 int main (void)
5 {
6 const int t = 2; /* count(1) */
7 struct s1 { /* count(1) */
8 int x;
9 int g[t];
10 };
11
12 struct s2 {
13 int x;
14 int g[2];
15 };
16
17 __builtin_printf("Sucess!\n");
18 return 0;
19 }
20
21 /* { dg-final { run-gcov gcov-pr85350.c } } */