1 // { dg-do compile { target c++11 } }
2 // { dg-options "-fgnu-tm -O -fdump-tree-tmmark -fdump-tree-tmlower" }
4 // Same as noexcept-1.C but all noexcepts are false.
8 static constexpr bool v() { return false; }
13 template<typename T> int foo()
15 __transaction_atomic noexcept(T::v()) { global += 1; }
16 return __transaction_atomic noexcept(T::v()) (global + 2);
21 return foo<TrueFalse>();
26 return __transaction_atomic noexcept(false) (global + 3)
27 + __transaction_atomic noexcept(TrueFalse::v()) (global + 4);
32 __transaction_atomic noexcept(false) { global += 5; }
33 __transaction_atomic noexcept(TrueFalse::v()) { global += 6; }
37 /* { dg-final { scan-tree-dump-times "eh_must_not_throw" 0 "tmlower" } } */
38 /* { dg-final { scan-tree-dump-times "ITM_RU" 6 "tmmark" } } */