rt_gccstream/gcc/testsuite/g++.dg/opt/complex3.C

25 lines
338 B
C

// PR 22022
// { dg-do compile }
// { dg-options "-O2" }
_Complex float f();
_Complex float g();
_Complex float h()throw();
void i(float)throw();
float j(void)
{
_Complex float x = h();
try
{
try
{
x = f();
}catch (...)
{
x += g();
}
}catch(...){}
i(__builtin_crealf(x)+__builtin_cimagf(x));
}