view gcc/testsuite/c-c++-common/tm/20111206.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-fgnu-tm -O2" } */
/* This test case triggered block sharing between the two transactions.  */

void func1 (void) __attribute__ ((transaction_callable, used));
long func2 (void) __attribute__ ((transaction_callable, used));
unsigned long rand (void);

void client_run (void)
{
  long types[100];
  long i;

  for (i = 0; i < 100; i++)
    {
      long action = rand ();

      switch (action)
	{
	case 0:
	  {
	    __transaction_relaxed
	    {
	      long bill = func2 ();
	      if (bill >= 0)
		{
		  func1 ();
		}
	    }
	    break;
	  }

	case 1:
	  {
	    long n;
	    __transaction_relaxed
	    {
	      for (n = 0; n < 100; n++)
		{
		  long t = types[n];
		  switch (t)
		    {
		    case 0:
		      func1 ();
		      break;
		    }
		}
	    }
	    break;
	  }
	}
    }
}