// { dg-do compile { target c++11 } } // { dg-options "-fgnu-tm -O -fdump-tree-tmmark -fdump-tree-tmlower" } // Same as noexcept-1.C but all noexcepts are false. struct TrueFalse { static constexpr bool v() { return false; } }; int global; template int foo() { __transaction_atomic noexcept(T::v()) { global += 1; } return __transaction_atomic noexcept(T::v()) (global + 2); } int f1() { return foo(); } int f2() { return __transaction_atomic noexcept(false) (global + 3) + __transaction_atomic noexcept(TrueFalse::v()) (global + 4); } int f3() { __transaction_atomic noexcept(false) { global += 5; } __transaction_atomic noexcept(TrueFalse::v()) { global += 6; } return global; } /* { dg-final { scan-tree-dump-times "eh_must_not_throw" 0 "tmlower" } } */ /* { dg-final { scan-tree-dump-times "ITM_RU" 6 "tmmark" } } */ /* { dg-final { cleanup-tree-dump "tmmark" } } */ /* { dg-final { cleanup-tree-dump "tmlower" } } */