aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.misc-tests/gcov-11.c
blob: a1037a552a94edcaab53228d849c0413185313b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Test gcov block mode.  */

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

int one = 1; /* subvert constant folder. */
int zero = 0;

int foo (int ix)
{
  return ix & 1 ? one : zero; /* count(10) */
}

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

  return jx != 5;
}

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