aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr83051-2.c
blob: 4718a276bdba0545df13ae9ee85ab49db0802c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-options "-fno-early-inlining" } */
/* { dg-require-effective-target non_strict_prototype } */

void
bar ()
{
  bar (0);
}

__attribute__ ((flatten))
void foo ()
{
  bar ();
}