URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [tm/] [pr47554.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-fgnu-tm" }
class list
{
public: list()
{
}
list(const list&)
{
}
const list& _M_get_Node_allocator() const
{
}
list _M_get_Tp_allocator() const
{
return list(_M_get_Node_allocator());
}
};
static list buildProjects;
static void build()
{
__transaction_relaxed
{
buildProjects._M_get_Tp_allocator();
}
}
Go to most recent revision | Compare with Previous | Blame | View Log