aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tm/noexcept-4.C
blob: a7eb7ef933bc5b21d8e1a1778c57c10a786237fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// { dg-do compile { target c++11 } }
// { dg-options "-fgnu-tm -O -fdump-tree-tmmark -fdump-tree-tmlower" }

// Similar to noexcept-1.C but without an explicit (true) for noexcept.

struct TrueFalse
{
  static constexpr bool v() { return true; }
};

int global;

template<typename T> int foo()
{
  __transaction_atomic noexcept { global += 1; }
  return __transaction_atomic noexcept (global + 2)
         + __transaction_atomic noexcept (global + 3);
}

int f1()
{
  return foo<TrueFalse>();
}

int f3()
{
  __transaction_atomic noexcept { global += 4; }
  return __transaction_atomic noexcept (global + 5)
         + __transaction_atomic noexcept (global + 6);
}

/* { dg-final { scan-tree-dump-times "eh_must_not_throw" 6 "tmlower" } } */
/* { dg-final { scan-tree-dump-times "ITM_RU" 6 "tmmark" } } */
/* { dg-final { cleanup-tree-dump "tmmark" } } */
/* { dg-final { cleanup-tree-dump "tmlower" } } */