summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gcov/gcov-6.C
blob: 53a2b20bfd5370badfcd9d3bef3fad0337f15e6d (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
// PR gcov-profile/34609
// { dg-do compile }
// { dg-options "-O -ftest-coverage" }

struct A
{
  int i;
  int &get () { return i; }
};

inline A foo ()
{
  A a;
  a.get ();
  return a;
}

inline A bar ()
{
  return foo ();
}

void baz ()
{
  A a;
  a = bar ();
}

// { dg-final { cleanup-coverage-files } }