URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [init/] [cleanup3.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// Check that on targets with "__cxa_atexit" we use destructors,
// rather than cleanup functions, to destroy objects with static
// storage duration.
// { dg-require-effective-target "cxa_atexit" }
// Cleanup functions generated by G++ have the "_tcf" prefix.
// { dg-final { scan-assembler-not "_tcf" } }
struct S {
~S();
};
struct T {
S s;
};
S s;
T t;
void f() {
static S s;
}
Go to most recent revision | Compare with Previous | Blame | View Log