URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [pr51396.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR tree-optimization/51396
// { dg-do compile }
// { dg-options "-O2 -fnon-call-exceptions" }
// { dg-additional-options "-mfma" { target i?86-*-* x86_64-*-* } }
double baz (double) throw ();
struct C
{
C (double d = 0.0) : c (d) {}
double c;
};
static inline void
foo (double x, const C &y)
{
x ? (y.c * baz (x)) : (C (), y);
}
void
bar (double x, C y)
{
foo (x, y);
}
Go to most recent revision | Compare with Previous | Blame | View Log