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/] [pr39867.c] - Rev 298
Compare with Previous | Blame | View Log
/* { dg-do link } */ /* { dg-options "-O2" } */ int main (void) { int exp = -1; /* Wrong folding of the LHS to an unsigned MAX leads to 4294967295 != 2. */ if ((exp < 2 ? 2U : (unsigned int) exp) != 2) link_error (); return 0; }