* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / thunk5.C
blob15526bf9ee3217cf9a3e286a67307f013d0af9f5
1 // PR c++/35067
2 // The thunks should be weak even on targets without one-only support.
3 // { dg-require-weak "" }
4 // { dg-final { scan-assembler "weak.*ZTv" } }
6 struct A
8   virtual ~A() { }
9 };
11 struct B: virtual A { };
13 B b;