* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / guard2.C
blobc35fa7e1c82b98f1d719ac3f3f87651e1b21fba1
1 // PR c++/41611
2 // Test that the guard gets its own COMDAT group.
3 // { dg-final { scan-assembler "_ZGVZN1A1fEvE1i,comdat" { target *-*-linux* *-*-gnu* } } }
5 struct A {
6   static int f()
7   {
8     static int &i = *new int();
9     return i;
10   }
13 int main()
15   return A::f();