* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / tm / overload2.C
blob3510779644edf3181cfdd37e56ad7e1470527aaf
1 // 13.4p1: A function with type F is selected for the function type FT of the
2 // target type required in the context if F (after possibly applying the
3 // transaction-safety conversion (4.14 [conv.tx])) is identical to FT.
4 // { dg-options "-fgnu-tm" }
6 void f() transaction_safe;
7 void f(int);
9 void (*p)() = f;