URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [switch3.C] - Rev 720
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/39371
// { dg-do compile }
void
foo (bool b)
{
switch ((unsigned int) b)
{
case 1:
case 2:
break;
}
}
void
bar (unsigned char b)
{
switch ((unsigned int) b)
{
case 1:
case 257:
case 513:
break;
}
}
Go to most recent revision | Compare with Previous | Blame | View Log