(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr83051-2.c
       1  /* { dg-options "-fno-early-inlining" } */
       2  /* { dg-require-effective-target non_strict_prototype } */
       3  
       4  void
       5  bar ()
       6  {
       7    bar (0);
       8  }
       9  
      10  __attribute__ ((flatten))
      11  void foo ()
      12  {
      13    bar ();
      14  }