URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [conversion/] [enum1.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-O2 -finline-functions" }
enum E { V = 1 };
static const E E_MIN = V;
static const E E_MAX = V;
bool valid(E v) { return v >= E_MIN && v <= E_MAX; }
int main() { return valid(E(2)); }
Go to most recent revision | Compare with Previous | Blame | View Log