diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/debug/dwarf2/inline1.C')
-rw-r--r-- | gcc/testsuite/g++.dg/debug/dwarf2/inline1.C | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/debug/dwarf2/inline1.C b/gcc/testsuite/g++.dg/debug/dwarf2/inline1.C new file mode 100644 index 000000000..ea405f853 --- /dev/null +++ b/gcc/testsuite/g++.dg/debug/dwarf2/inline1.C @@ -0,0 +1,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; } |