* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / abi-tag11.C
blob36c1c9f0c099f44f3b039c479fe14d062c464f0c
1 // { dg-final { scan-assembler "_Z1fSbB3fooIwSt11char_traitsIwESaIwEES3_" } }
3 namespace std {
4   template <class T> struct char_traits {};
5   template <class T> struct allocator {};
6   template <class T, class U, class V>
7   struct __attribute ((abi_tag ("foo"))) basic_string { };
8   typedef basic_string<wchar_t,char_traits<wchar_t>,allocator<wchar_t> >
9     wstring;
12 void f(std::wstring,std::wstring) {}