aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.misc-tests/gcov-10.c
blob: bd1d418f378a9cc9482b581205416fa2bd80c313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Test gcov block mode.  */

/* { dg-options "-fprofile-arcs -ftest-coverage" } */
/* { dg-do run { target native } } */

int main ()
{
  unsigned ix, jx = 0;
  
  for (ix = 10; ix--;) if (ix & 1) jx++; /* count(11) */

  return jx != 5;
}

/* { dg-final { run-gcov { -a gcov-10.c } } } */