aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf-die3.c
blob: 2b071fc9ed06b80fd67aa0980c3bcf28d2f20544 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Verify that extern inline function never actually inlined has no abstract DIE.  */
/* { dg-do compile } */
/* { dg-options "-O0 -gdwarf -dA" } */
/* { dg-final { scan-assembler-not "DW_AT_inline" } } */
extern inline int t()
{
}
int (*q)()=t;
int t()
{
}