1 /* Test gcov block mode.  */
2 
3 /* { dg-options "-fprofile-arcs -ftest-coverage" } */
4 /* { dg-do run { target native } } */
5 
main()6 int main ()
7 {
8   unsigned ix;
9 
10   for (ix = 10; ix--;); /* count(11) */
11 
12   return 0;
13 }
14 
15 /* { dg-final { run-gcov { -a gcov-9.c } } } */
16