URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [ld/] [testsuite/] [ld-selective/] [4.cc] - Rev 854
Go to most recent revision | Compare with Previous | Blame | View Log
struct A { virtual void foo(); virtual void bar(); }; void A::foo() { } // lose void A::bar() { } // keep struct B : public A { virtual void foo(); }; void B::foo() { } // lose void _start() __asm__("_start"); // keep void start() __asm__("start"); // some toolchains use this name. A a; // keep B b; A *getme() { return &a; } // keep void _start() { getme()->bar(); } void start () { _start (); } extern "C" void __main() { }
Go to most recent revision | Compare with Previous | Blame | View Log