view libitm/testsuite/libitm.c/clone-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* Verify that we can look up tm clone of transaction_callable
   and transaction_pure.  */

#include <stdlib.h>
#include <libitm.h>

static int x;

int __attribute__((transaction_pure)) pure(int i)
{
  return i+2;
}

int __attribute__((transaction_callable)) callable(void)
{
  return ++x;
}

int main()
{
  if (_ITM_getTMCloneSafe (&pure) != &pure)
    abort ();

  if (_ITM_getTMCloneSafe (&callable) == NULL)
    abort ();

  return 0;
}