1  /* PR target/104327 */
       2  
       3  void foo (int *);
       4  
       5  static inline __attribute__((always_inline)) void
       6  bar (int *x)
       7  {
       8    foo (x);
       9  }
      10  
      11  __attribute__((cold, optimize("Os"))) void
      12  baz (int *x)
      13  {
      14    bar (x);
      15  }