(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
init-compare-1.c
       1  /* { dg-do compile } */
       2  /* { dg-additional-options "-fdelete-null-pointer-checks" } */
       3  
       4  extern int a, b;
       5  int c = &a == &a;
       6  int d = &a != &b;