aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr104327.c
blob: d54e5d58cc447c0167edde28ac0f8c867d5fa03d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR target/104327 */

void foo (int *);

static inline __attribute__((always_inline)) void
bar (int *x)
{
  foo (x);
}

__attribute__((cold, optimize("Os"))) void
baz (int *x)
{
  bar (x);
}