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
/
init
/
ctor12.C
blob
7c1aab7255cbb4cc967285ffb36d60fc3279911e
1
// PR c++/78689 - ICE on constructor with label
2
3
struct e {
4
e() {
5
goto aj;
6
if (0)
7
aj:;
8
}
9
};
10
11
void f()
12
{
13
struct e x;
14
}