* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / tm / noexcept-6.C
blob81ae213b2e89e467e25dd65ecb56feaba8f4fec6
1 // { dg-do compile { target c++11 } }
2 // { dg-options "-fno-exceptions -fgnu-tm -O -fdump-tree-tmlower" }
4 struct TrueFalse
6   static constexpr bool v() { return true; }
7 };
9 int global;
11 template<typename T> int foo()
13   return __transaction_atomic noexcept(T::v()) (global + 1);
16 int f1()
18   return foo<TrueFalse>();
21 /* { dg-final { scan-tree-dump-times "eh_must_not_throw" 0 "tmlower" } } */
22 /* { dg-final { scan-tree-dump-times "__transaction_atomic" 1 "tmlower" } } */