URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [doloop-2.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
#include <limits.h> extern void exit (int); extern void abort (void); volatile unsigned int i; int main (void) { unsigned short z = 0; do ++i; while (--z > 0); if (i != USHRT_MAX + 1U) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log