* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag6.C
blob94ea2f37b6b8009d32acab9d112b42eb2e6d25fe
1 // PR c++/60642
3 struct __attribute((abi_tag("test"))) foo
5   void f();
6   virtual ~foo();
7 };
9 template<typename>
10 struct __attribute((abi_tag("test"))) bar
12   void f();
13   virtual ~bar();
16 int main()
18   foo f;
19   f.f();
21   bar<int> b;
22   b.f();
25 // { dg-final { scan-assembler "_ZTV3barB4testIiE" } }