(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr107935.c
       1  /* { dg-do compile } */
       2  
       3  int *a, **b;
       4  int main() {
       5    int d = 0, *e = &d;
       6   L:
       7    *e = d;
       8    if (a) {
       9      int *g = e = *b;
      10      if (!e)
      11        __builtin_abort();
      12      if (**b)
      13        return 0;
      14      *g = 1;
      15      goto L;
      16    }
      17    return 0;
      18  }