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

int global;
int george;

extern crap() __attribute__((transaction_unsafe));

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