libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tm / wrap-4.c
blob7c1969ba425d112d09322a0741b243b54850ad2e
1 /* { dg-do compile } */
2 /* { dg-options "-fgnu-tm -fdump-tree-optimized -O2" } */
4 void bark (void);
5 void candycane (void);
6 static void candy() { candycane(); }
8 static void tootsie_roll () __attribute__((transaction_wrap (candy)));
9 static void tootsie_roll () { bark(); }
11 void foo()
13 __transaction_relaxed { candy(); }
16 /* We still have one call to candy()-- on the uninstrumented path
17 everything is as usual. */
18 /* { dg-final { scan-tree-dump-times "candy \\(\\);" 1 "optimized" } } */