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/] [20030404-1.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* This exposed a bug in tree-ssa-ccp.c. Since 'j' and 'i' are never defined, CCP was not traversing the edges out of the if(), which caused the PHI node for 'k' at the top of the while to only be visited once. This ended up causing CCP to think that 'k' was the constant '1'. */ main() { int i, j, k; k = 0; while (k < 10) { k++; if (j > i) j = 5; else j =3; } if (k != 10) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log