(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr46723.c
       1  /* { dg-do compile } */
       2  
       3  short *m;
       4  void test()
       5  {
       6    short x = 128;
       7    unsigned int i;
       8    for (i = 0; i < 128; ++i, x = (unsigned short)x + 1)
       9      m[i] = x;
      10  }