(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.misc-tests/
gcov-pr85217.c
       1  /* { dg-options "-fprofile-arcs -ftest-coverage" } */
       2  /* { dg-do run { target native } } */
       3  
       4  int a=0;
       5  
       6  int main() {
       7    for (;; a++) {
       8      int c[1];
       9      if (a) {
      10        break;
      11        a;
      12        continue; /* count(1) */
      13      }
      14      continue; /* count(1) */
      15    }
      16  
      17    return 0;
      18  }
      19  
      20  /* { dg-final { run-gcov gcov-pr85217.c } } */