aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tm/indirect-1.c
blob: eade848bd8bc7925e4fe54ccdcb222a13a16fb96 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */
/* { dg-options "-fgnu-tm" } */

void foo(void (*fn)(void))
{
  __transaction_relaxed {
    fn();
  }
}