(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr22335-1.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O1 -fdelete-null-pointer-checks"  } */
       3  int t(int *a)
       4  {
       5    int i;
       6    *a = 1;
       7    i = a == 0;
       8    return i;
       9  }
      10