* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / label13.C
blob70f251d75f01c01ba6b34ea17c9931a7f0d81792
1 // PR c++/41090
2 // { dg-do run }
3 // { dg-options "" }
5 int i;
6 struct C
8   C();
9 };
11 C::C()  // { dg-bogus "can never be copied" }
13   static void *labelref = &&label;
14   goto *labelref;
15  label: i = 1;
18 int main()
20   C c;
21   return (i != 1);