URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [abi/] [mangle44.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/45008
template <typename T>
struct A
{
void fn1 () {
struct Nested {
static void fn2 () { }
};
Nested::fn2();
}
};
void fn3 () {
A<double> a;
a.fn1();
}
// { dg-final { scan-assembler-not "_ZZN1AIT_E3fn1EvEN6Nested3fn2Ev" } }
Go to most recent revision | Compare with Previous | Blame | View Log