ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.misc-tests/gcov-pr85217.c

21 lines
315 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
/* { dg-options "-fprofile-arcs -ftest-coverage" } */
/* { dg-do run { target native } } */
int a=0;
int main() {
for (;; a++) {
int c[1];
if (a) {
break;
a;
continue; /* count(1) */
}
continue; /* count(1) */
}
return 0;
}
/* { dg-final { run-gcov gcov-pr85217.c } } */