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

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

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

  return jx != 5;
}

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