URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [abi/] [thunk4.C] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-require-weak "" }
// { dg-skip-if "Linkonce not weak" { *-*-mingw* *-*-cygwin } { "*" } { "" } }
// { dg-final { scan-assembler ".weak\[ \t\]_?_ZThn._N7Derived3FooEv" { target { ! { *-*-darwin* } } } } }
// { dg-final { scan-assembler ".weak_definition\[ \t\]_?_ZThn._N7Derived3FooEv" { target { *-*-darwin* } } } }
struct Base
{
virtual void Foo ();
};
struct Filler
{
virtual void Baz ();
};
struct Derived : Filler, Base
{
virtual void Foo ();
};
inline void Derived::Foo ()
{
}
Derived f;
Go to most recent revision | Compare with Previous | Blame | View Log