URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr39666-1.c] - Rev 826
Compare with Previous | Blame | View Log
/* PR middle-end/39666 */ /* { dg-do compile } */ /* { dg-options "-O2 -Wuninitialized" } */ int foo (int i) { int j; switch (i) { case -__INT_MAX__ - 1 ... -1: j = 6; break; case 0: j = 5; break; case 1 ... __INT_MAX__: j = 4; break; } return j; }