Update year range in copyright notice of binutils files
[deliverable/binutils-gdb.git] / ld / testsuite / ld-selective / 4.cc
index 9df26ac872ce3f6dfe0c8839077a90ea67144121..f4fc21ca15acb0739b7e9fa56ecde0f4e3a4c951 100644 (file)
@@ -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,9 +12,10 @@ struct B : public A
   virtual void foo();
 };
 
-void B::foo() { }                      // loose
+void B::foo() { }                      // lose
 
 void _start() __asm__("_start");       // keep
+void start() __asm__("start"); // some toolchains use this name.
 
 A a;                                   // keep
 B b;
@@ -25,4 +26,9 @@ void _start()
   getme()->bar();
 }
 
+void start ()
+{
+  _start ();
+}
+
 extern "C" void __main() { }
This page took 0.024347 seconds and 4 git commands to generate.