view gcc/testsuite/gcc.misc-tests/gcov-15.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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 } } } */