modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/20021110.c (about)

     1  /* PR c/8439 */
     2  /* Verify that GCC properly handles null increments. */
     3  
     4  struct empty {
     5  };
     6  
     7  void foo(struct empty *p)
     8  {
     9     p++;
    10  }