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