diff options
Diffstat (limited to 'ld/testsuite/ld-selective/4.cc')
-rw-r--r-- | ld/testsuite/ld-selective/4.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/testsuite/ld-selective/4.cc b/ld/testsuite/ld-selective/4.cc index 9df26ac..02864a7 100644 --- a/ld/testsuite/ld-selective/4.cc +++ b/ld/testsuite/ld-selective/4.cc @@ -4,7 +4,7 @@ struct A virtual void bar(); }; -void A::foo() { } // loose +void A::foo() { } // lose void A::bar() { } // keep struct B : public A @@ -12,7 +12,7 @@ struct B : public A virtual void foo(); }; -void B::foo() { } // loose +void B::foo() { } // lose void _start() __asm__("_start"); // keep |