(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr31710.c
       1  typedef short SHORT;
       2  struct v { SHORT i; };
       3  void f(struct v *pin, struct v *pout) {
       4          if (pin->i == (-0x7fff)-1)
       5              pout->i = -pin->i;
       6  }