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/] [complex2.C] - Rev 318
Go to most recent revision | Compare with Previous | Blame | View Log
// PR 22022
// { dg-do compile }
// { dg-options "-O2" }
_Complex float f();
_Complex float g();
_Complex float h()throw();
void i(_Complex float)throw();
void j(void)
{
_Complex float x = h();
try
{
try
{
x = f();
}catch (...)
{
x = g();
}
}catch(...){}
i(x);
}
Go to most recent revision | Compare with Previous | Blame | View Log