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