URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [eh/] [080514-1.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// This used to fail on s390 due to cse removing an insn with a
// REG_EH_REGION without deleting the EH edge.
// { dg-do compile }
// { dg-options "-O2 -fnon-call-exceptions" }
void
run (int m, double d)
{
int stack[m];
int *sp = stack;
if (d == 1.0)
*(sp++) = (0);
else if (d < 1.0)
*(sp++) = (-1);
}
Go to most recent revision | Compare with Previous | Blame | View Log