aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gcov/gcov-10.C
blob: 4c91be94ee46ee40e53108fc1a1cec1bb605714c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Ensure PIC sequence used for comdat functions */

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

inline int __attribute__ ((noinline)) Foo ()
{
  static int x[1];

  return x[0]++;  /* count (1) */
}

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

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