OSDN Git Service

Update gcc.dg/atomic-flag.c test for non-boolean TAS targets.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / fail_always_inline.c
1 /* { dg-do compile } */
2
3 extern __attribute__ ((always_inline)) void
4  bar() { } /* { dg-warning "function might not be inlinable" } */
5
6 void
7 f()
8 {
9   bar(); 
10 }
11