aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr119616.c
blob: 5ffdb8c80e0a757ebc0f0634ab32ef71bc128b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* PR tree-optimization/119616 */
/* { dg-do compile { target external_musttail } } */
/* { dg-options "-O2" } */

int foo (int *);
int bar (int);

int
baz (int x)
{
  if (!x)
    [[gnu::musttail]] return bar (x);
  return foo (&x);
}

int
qux (int x)
{
  if (!x)
    [[gnu::musttail]] return bar (x);
  foo (&x);
  return 1;
}