* c-c++-common/ubsan/float-cast-overflow-6.c: Add i?86-*-* target.
[official-gcc.git] / gcc / testsuite / gcc.dg / tm / wrap-4.c
blobd3a6a48f8e070278f7718556ea9c51a0f481e875
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" } } */
20 /* { dg-final { cleanup-tree-dump "optimized" } } */