(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
ipa/
ipa-sra-25.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -Wmaybe-uninitialized -Werror"  } */
       3  
       4  int cbos();
       5  static int aos() {
       6    cbos();
       7    return 0;
       8  }
       9  int cbos_ptr;
      10  long cbos_psize;
      11  int cbos() {
      12    if (cbos_ptr)
      13      return aos();
      14    if (cbos_psize)
      15      return 1;
      16    return 0;
      17  }