URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [vrp-6.c] - Rev 154
Compare with Previous | Blame | View Log
#include <limits.h> extern void exit (int); extern void abort (); void test01(unsigned int a, unsigned int b) { if (a < 5) abort(); if (b < 5) abort(); if (a - b != 5) abort(); } void test02(unsigned int a, unsigned int b) { if (a >= 12) if (b > 15) if (a - b < UINT_MAX - 15U) abort (); } int main(int argc, char *argv[]) { unsigned x = 0x80000000; test01(x + 5, x); test02(14, 16); exit (0); }