URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [fold2.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// PR optimization/14669
// { dg-do run }
// { dg-options "-O2" }
extern "C" void abort (void);
extern "C" void exit (int);
enum ActionType { EE=-1, E0=0, E1, E2 };
int main(void)
{
ActionType t = E0;
if (E1 <= t && t <= E2)
abort ();
exit (0);
}
Go to most recent revision | Compare with Previous | Blame | View Log