1 /* not inline inline function must not have abstract DIE  */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fno-inline -gdwarf -dA -fpreprocessed" } */
4 /* { dg-final { scan-assembler-not "DW_AT_inline" } } */
5 #1 "test.h"
t()6 inline int t()
7 {
8 }
q()9 int q()
10 {
11   t();
12 }
13