summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gcov/gcov-3.C
blob: aff063a4b90f4ba631828f9afb965f7688779027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Check that gcov doesn't abort when a static object is defined
   within a header file.  */

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

#include "gcov-3.h"

extern int foo();

int
main ()
{
  return foo();                                /* count(1) */
}

/* { dg-final { run-gcov gcov-3.C } } */