URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr39867.c] - Rev 801
Go to most recent revision | 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; }
Go to most recent revision | Compare with Previous | Blame | View Log