* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / guard3.C
blobfd9d00e279677fc6c6f03398934eb3e1ec594140
1 // PR c++/45603
3 extern "C" int __cxa_guard_acquire();
5 struct A
7   ~A();
8 };
10 A* f()
12   static A a;
13   return &a;