Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / opt / complex2.C
blob53fc7e98e3b56c61b7dfa6ec7372b9a407940c09
1 // PR 22022
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 _Complex float f();
6 _Complex float g();
7 _Complex float h()throw();
8 void i(_Complex float)throw();
10 void j(void)
12   _Complex float x = h();
13   try
14   {
15     try
16     {
17       x = f();
18     }catch (...)
19     {
20       x = g();
21     }
22   }catch(...){}
23   i(x);