OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libitm/] [testsuite/] [libitm.c/] [clone-1.c] - Rev 737

Compare with Previous | Blame | View Log

/* 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;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.