(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
lto/
pr84212_1.c
       1  /* PR lto/84212 - -Wno-stringop-verflow does not disable warnings from
       2     -flto link stage  */
       3  
       4  extern void clear (char*, unsigned);
       5  
       6  int main (void)
       7  {
       8    char x[3];
       9  
      10    clear (x, 4);
      11  }