URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wuninitialized-5.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// PR middle-end/39666// { dg-do compile }// { dg-options "-O2 -Wuninitialized" }intfoo (int i){int j;switch (i){case -__INT_MAX__ - 1 ... -1:j = 6;break;case 0:j = 5;break;case 2 ... __INT_MAX__:j = 4;break;}return j; // { dg-warning "may be used uninitialized" }}
Go to most recent revision | Compare with Previous | Blame | View Log
