Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.misc-tests / gcov-pr85217.c
blob86a3c4b5a129d88f8606df53254520acdd1e30d2
1 /* { dg-options "-fprofile-arcs -ftest-coverage" } */
2 /* { dg-do run { target native } } */
4 int a=0;
6 int main() {
7 for (;; a++) {
8 int c[1];
9 if (a) {
10 break;
12 continue; /* count(1) */
14 continue; /* count(1) */
17 return 0;
20 /* { dg-final { run-gcov gcov-pr85217.c } } */