URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [vrp-4.c] - Rev 711
Go to most recent revision | Compare with Previous | Blame | View Log
extern void exit (int); extern void abort (); void test(int x, int y) { int c; if (x == 1) abort(); if (y == 1) abort(); c = x / y; if (c != 1) abort(); } int main() { test(2, 2); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log