repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
complex2.C
blob
53fc7e98e3b56c61b7dfa6ec7372b9a407940c09
1
// PR 22022
2
// { dg-do compile }
3
// { dg-options "-O2" }
4
5
_Complex float f();
6
_Complex float g();
7
_Complex float h()throw();
8
void i(_Complex float)throw();
9
10
void j(void)
11
{
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);
24
}