(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr17906.c
       1  struct usc_bigstack_t {};
       2  
       3  void
       4  usc_recressive_func(int cnt, int max, struct usc_bigstack_t bstack)
       5  {
       6    usc_recressive_func(cnt+1, max, bstack);
       7  }