URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [ifcvt1.C] - Rev 478
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-O2 -fnon-call-exceptions" }
struct S { ~S () throw () {} };
double bar ();
int
foo ()
{
S a;
int i = 0;
double c = bar ();
c = c < 0 ? -c : c;
if (c <= 1.e-8)
i += 24;
return i;
}
Go to most recent revision | Compare with Previous | Blame | View Log