PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr23960.c
blob5ca0562af1e31e14fc553928785f418f1aef227e
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. */
5 void abort (void) __attribute__ ((noreturn));
7 void
8 foo (char *d, unsigned long int n)
9 {
10 if (d + n > d)
11 abort ();