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/] [execute/] [vrp-5.c] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
extern void exit (int); extern void abort (); void test(unsigned int a, unsigned int b) { if (a < 5) abort(); if (b < 5) abort(); if (a + b != 0U) abort(); } int main(int argc, char *argv[]) { unsigned int x = 0x80000000; test(x, x); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log