URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [abi/] [guard3.C] - Rev 706
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/45603
extern "C" int __cxa_guard_acquire();
struct A
{
~A();
};
A* f()
{
static A a;
return &a;
}
Go to most recent revision | Compare with Previous | Blame | View Log