mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
bd0110a3cb
* ld-selective/selective.exp: Run it as xfailed. * ld-selective/4.cc: Correct spelling of "lose".
33 lines
463 B
C++
33 lines
463 B
C++
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
|
|
|
|
A a; // keep
|
|
B b;
|
|
A *getme() { return &a; } // keep
|
|
|
|
extern B* dropme2();
|
|
void dropme1() { dropme2()->foo(); } // lose
|
|
B *dropme2() { return &b; } // lose
|
|
|
|
void _start()
|
|
{
|
|
getme()->bar();
|
|
}
|
|
|
|
extern "C" void __main() { }
|