URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr16372-1.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// PR tree-optimization/16372
// { dg-do run }
// { dg-options "-O1" }
extern "C" void abort();
enum number {ZERO, ONE, TWO, THREE, FOUR, FIVE};
int main() {
number n = FIVE;
if((n == ONE) || (n == TWO) || (n == THREE)) {
abort ();
}
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log