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; } }