aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.misc-tests/gcov-15.c
blob: 04273fcec4257f9f004a77010a651a2343d67aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* Test gcov multiple paths to file.  */

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

#if !RECURSIVE
#define RECURSIVE 1
#include "./gcov-15.c"
#undef RECURSIVE
#endif

static void __attribute__ ((noinline)) Recursive (void);


#if RECURSIVE
static void __attribute__ ((noinline))
Recursive ()
{
  return; /* count(1) */
}

#else
int main ()
{
  Recursive (); /* count(1) */
  return 0;
}
#endif

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