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.dg/] [tree-ssa/] [vrp30.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do link } */ /* { dg-options "-O2" } */ extern int link_error (int); int tst2 (int x, int y) { /* VRP should be able to extract range information for x and y out of this TRUTH_AND_EXPR. */ if ((x > 5555) && (y < 6666)) { if (x > 5555) if (y < 6666) return 1111; else return link_error (2222); else if (y < 6666) return link_error (3333); else return link_error (4444); } else return 0; } int main() { return 0; }