URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr23960.c] - Rev 297
Compare with Previous | Blame | View Log
/* PR tree-optimization/23960 fold-const.c used to construct a comparison node with one pointer operand and one non-pointer operand. */ void abort (void) __attribute__ ((noreturn)); void foo (char *d, unsigned long int n) { if (d + n > d) abort (); }