URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [tm/] [nested-1.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-fgnu-tm" }
class HashTree
{
public:
__attribute__((transaction_safe))
int add_element2();
private:
int Count;
};
__attribute__((transaction_safe))
int HashTree::add_element2()
{
int tt;
__transaction_atomic {
tt = Count;
}
return tt;
}
Go to most recent revision | Compare with Previous | Blame | View Log