modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr31710.c (about)

     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  }