OSDN Git Service

PR testsuite/52641
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr23960.c
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