aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/dwarf2/dwarf-die3.c
blob: 34fddfaffc08f9c832379729a2d18574c5c8209a (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-2 -dA" } */
/* { dg-final { scan-assembler-not "DW_AT_inline" } } */
extern inline int t()
{
}
int (*q)()=t;
int t()
{
}