summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/debug/dwarf2/inline1.C
blob: ea405f85339a4a86d1a9db843844b99c5a65ade7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This isn't really testing dwarf output, but rather that we can inline f
// even though the call precedes the definition.

// { dg-options "-gdwarf-2 -dA -O" }
// { dg-final { scan-assembler "DW_TAG_inlined_subroutine" } }

template <class T>
inline T f(T);

int main()
{
  f(1);
}

int i;

template <class T>
inline T f(T t) { ++i; return t; }