(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
alloca-leak.c
       1  /* { dg-require-effective-target alloca } */
       2  
       3  void *test (void)
       4  {
       5    void *ptr = __builtin_alloca (64);
       6    return ptr;
       7  }
       8  /* TODO: warn about escaping alloca.  */