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

     1  /* PR tree-optimization/23960
     2     fold-const.c used to construct a comparison node with one pointer
     3     operand and one non-pointer operand.  */
     4  
     5  void abort (void) __attribute__ ((noreturn));
     6  
     7  void
     8  foo (char *d, unsigned long int n)
     9  { 
    10    if (d + n > d)
    11      abort ();
    12  }