(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr48022-2.c
       1  /* PR tree-optimization/48022 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -Wstrict-overflow" } */
       4  
       5  #include <string.h>
       6  
       7  int
       8  foo (const char *x)
       9  {
      10    return strcmp (x, "/");
      11  }