1 /* { dg-do compile }
2    { dg-options "-fgnu-tm" } */
3 
4 void funcA();
5 void funcB();
6 
thread()7 void *thread()
8 {
9 	__transaction_relaxed
10 	{
11 		funcA();
12 	};
13 	funcB();
14 }
15