* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / template3.C
blob90ccfd8add604a70ee38251465be88eee08d4a35
1 // PR c++/33962
2 // { dg-do compile }
4 template <class T> struct A;
6 template <class U> void foo (const U &x, ...);
7 template <class T> void foo (const A<T> &x, ...);
9 void bar (const A<int> &x, const char *y)
11   foo (x, y);
14 /* { dg-final { scan-assembler "_Z3fooIiEvRK1AIT_Ez" } } */
15 /* { dg-final { scan-assembler-not "_Z3fooI1AIiEEvRKT_z" } } */