(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr93927-2.c
       1  /* PR tree-optimization/93927 */
       2  
       3  __SIZE_TYPE__ strchr (const char *, int);
       4  
       5  char *
       6  foo (char *x)
       7  {
       8    return !!strchr (x, 0) ? "0" : "1";
       9  }