summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tm/irrevocable-1.c
blob: 9f9fe3ad41d2d32e8a5ec1c6583cbf0c97534d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-fgnu-tm -O" } */

int global;
int george;

extern void crap() __attribute__((transaction_unsafe));

void
foo()
{
	__transaction_relaxed {
		global++;
		crap();
		george++;
	}
}