2003-05-07 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 8 May 2003 07:01:11 +0000 (07:01 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 8 May 2003 07:01:11 +0000 (07:01 +0000)
* ld-elfvers/vers27d3.c (__start): New.
(start): New.

ld/testsuite/ChangeLog
ld/testsuite/ld-elfvers/vers27d3.c

index 0da2fb8..0d1ad21 100644 (file)
@@ -1,5 +1,10 @@
 2003-05-07  H.J. Lu <hongjiu.lu@intel.com>
 
+       * ld-elfvers/vers27d3.c (__start): New.
+       (start): New.
+
+2003-05-07  H.J. Lu <hongjiu.lu@intel.com>
+
        * ld-elfvers/vers.exp (build_binary): Support build exeutable.
        (build_binary): Renamed from ...
        (build_vers_lib): This.
index e72d6f8..b265880 100644 (file)
@@ -1,11 +1,21 @@
 extern void ref ();
 extern void foo ();
 
-void _start() __asm__("_start");
-
 void
 _start ()
 {
   foo ();
   ref ();
 }
+
+void
+__start ()
+{
+  _start ();
+}
+
+void
+start ()
+{
+  __start ();
+}