summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/always_inline3.c
blob: b183770adc005753ee996cbfa955cb386fbae89e (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-Winline -O2" } */
inline __attribute__ ((always_inline)) void
q2(void)
{ 				/* { dg-error "recursive" "" } */
  q2(); 			/* { dg-error "called from here" "" } */
  q2(); 			/* { dg-error "called from here" "" } */
}