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.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20040621-1.c] - Rev 297
Compare with Previous | Blame | View Log
/* This test woudl cause partial redundancies too complex for PRE to insert using a single temporary due to them not being GIMPLE expressions. */ int ssbgst (int c, int k) { int a, i, j; a = 0; i = 1; j = k; while (j) { a += (j + i) * (k + i + c) + (j + i + c); j = j - 1; } return a; }