OSDN Git Service

Merge from transactional-memory branch.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tm / wrap-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm -fdump-tree-optimized -O2" } */
3
4 static void candy() { candycane(); }
5
6 static void tootsie_roll () __attribute__((transaction_wrap (candy)));
7 static void tootsie_roll () { bark(); }
8
9 void foo()
10 {
11   __transaction_relaxed { candy(); }
12 }
13
14 /* { dg-final { scan-tree-dump-times "candy" 0 "optimized" } } */
15 /* { dg-final { cleanup-tree-dump "optimized" } } */