(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr104910.c
       1  /* PR target/104910 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Os -fno-forward-propagate" } */
       4  /* { dg-additional-options "-fstack-protector-all" { target fstack_protector } } */
       5  
       6  void
       7  bar (void);
       8  
       9  void
      10  foo (int x)
      11  {
      12    if (x)
      13      bar ();
      14  }