summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tm/pr52141.c
blob: 0dabf76ce6dac69107021903f8277a6e301be631 (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
/* { dg-do compile } */
/* { dg-options "-fgnu-tm -O0 -w" } */

__attribute__((always_inline))
static void asmfunc(void)
{
  __asm__ (""); /* { dg-error "asm not allowed in .transaction_safe" } */
}

__attribute__((transaction_safe))
static void f(void)
{
  asmfunc();
}

int main()
{
  __transaction_atomic {
    f();
  }
  return 0;
}

/* { dg-message "inlined from \'f\'" "" { target *-*-* } 0 } */