Corrected date in changelog
[official-gcc.git] / gcc / testsuite / gcc.dg / debug / pr80321.c
blobe75572e7898329ff1bcf1378080807c804d16d0e
1 /* PR debug/80321 */
2 /* { dg-do compile } */
3 /* { dg-options "-fkeep-inline-functions" } */
5 void bar (void);
7 static inline void
8 test (int x)
10 inline void
11 foo (int x)
13 test (0);
14 asm volatile ("" : : : "memory");
16 if (x != 0)
17 foo (x);
18 else
19 bar ();
22 void
23 baz (int x)
25 test (x);