(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr48063.c
       1  /* PR tree-optimization/48063 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-fno-early-inlining" } */
       4  
       5  extern void abort (void);
       6  static void bar ();
       7  
       8  void
       9  foo ()
      10  {
      11    bar (1);
      12  }
      13  
      14  static void
      15  bar (double i)
      16  {
      17    if (i)
      18      abort ();
      19  }