(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr50132.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-Os -fno-asynchronous-unwind-tables -g" } */
       3  
       4  void bar (long double n);
       5  
       6  void foo (int c)
       7  {
       8    if (c)
       9      bar (0);
      10  }