Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr44964.c
blob1df1bde0703dd5e273b4eb084360259e916b38ce
1 /* { dg-do compile } */
2 /* { dg-options "-fkeep-inline-functions -O" } */
4 static inline __attribute__ ((const))
5 void baz (int i)
9 static __attribute__ ((always_inline))
10 inline __attribute__ ((flatten))
11 void bar (void)
13 baz (0);
16 void
17 foo (void)
19 bar ();