summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tm/data-2.c
blob: 3e2a604bfb31366f5b110ee5ce0f4273b5dc3fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-options "-fgnu-tm" } */
/* Test read and write on all basic types.  */

struct S
{
  int x[10];
};

static struct S g;

extern void fill (struct S *);

void f(void)
{
  struct S l;
  fill(&l);

  __transaction_atomic {
    g = l;
  }
}