URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20050131-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Verify that we do not lose side effects on a MOD expression. */ #include <stdlib.h> #include <stdio.h> int foo (int a) { int x = 0 % a++; return a; } main() { if (foo (9) != 10) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log