* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / ctor12.C
blob7c1aab7255cbb4cc967285ffb36d60fc3279911e
1 // PR c++/78689 - ICE on constructor with label
3 struct e {
4   e() {
5     goto aj;
6     if (0)
7     aj:;
8   }
9 };
11 void f()
13   struct e x;