فهرست منبع

At some stage I was getting conflicts on the SH platform with
the two i_am_not_a_leaf functions, changing the name of one is harmless
and fixed the problem at the time. Not entirely sure it's still required.

David McCullough 23 سال پیش
والد
کامیت
dad8611e7a
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      libc/sysdeps/linux/common/initfini.c

+ 2 - 2
libc/sysdeps/linux/common/initfini.c

@@ -122,8 +122,8 @@ _fini (void)
     /* Let GCC know that _fini is not a leaf function by having a dummy
        function call here.  We arrange for this call to be omitted from
        either crt file.  */
-    extern void i_am_not_a_leaf (void);
-    i_am_not_a_leaf ();
+    extern void i_am_not_a_leaf2 (void);
+    i_am_not_a_leaf2 ();
   }
 
   /* Beginning of the _fini epilog. */