URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030403-1.c] - Rev 688
Compare with Previous | Blame | View Log
/* The non-destructive folder was always emitting >= when folding comparisons to signed_max+1. */ #include <limits.h> int main () { unsigned long count = 8; if (count > INT_MAX) abort (); return (0); }