]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove bounded-pointers relics from am33 code.
authorJoseph Myers <joseph@codesourcery.com>
Thu, 28 Feb 2013 21:28:57 +0000 (21:28 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 28 Feb 2013 21:28:57 +0000 (21:28 +0000)
ports/ChangeLog.am33
ports/sysdeps/am33/elf/start.S
ports/sysdeps/unix/sysv/linux/am33/clone.S

index 2e5c0caac0ef6199dcf3ae259079a1705b69f2a7..2bb7893f9ad6eb940dd1f559112ac9a045cf7a33 100644 (file)
@@ -1,3 +1,10 @@
+2013-02-28  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/am33/elf/start.S: Don't include "bp-sym.h".
+       (_start): Don't use BP_SYM.
+       * sysdeps/unix/sysv/linux/am33/clone.S: Don't include <bp-sym.h>.
+       (__clone): Don't use BP_SYM.
+
 2013-02-14  Joseph Myers  <joseph@codesourcery.com>
 
        [BZ #13550]
index 0ca71f14a409ab0fee26d5aa2ddff13c29d89738..e89f9db15c06ee00952b5e3c66e5baf4933916ec 100644 (file)
@@ -37,8 +37,6 @@
                                        NULL
 */
 
-#include "bp-sym.h"
-
        .text
        .globl _start
        .type _start,@function
@@ -63,13 +61,13 @@ _start:
        mov 0,a3
 
        mov (32,sp), d1         /* argc.  */
-       mov BP_SYM (main), d0   /* main.  */
+       mov main, d0            /* main.  */
 
        /* Call the user's main function, and exit with its value.
           But let the libc call main.    */
-       call BP_SYM (__libc_start_main),[],0
+       call __libc_start_main,[],0
 
-       call BP_SYM (abort),[],0 /* Crash if somehow `exit' does return.  */
+       call abort,[],0 /* Crash if somehow `exit' does return.  */
 
 /* Define a symbol for the first piece of initialized data.  */
        .data
index 151950c5dbe75968467c82134ba0a7c07fe377c8..cece99bf3484b150ba898b60ba5580d8ff3809d6 100644 (file)
 #define _ERRNO_H       1
 #include <bits/errno.h>
 #include <asm-syntax.h>
-#include <bp-sym.h>
 
 /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg); */
 
         .text
-ENTRY (BP_SYM (__clone))
+ENTRY (__clone)
        /* Sanity check arguments.  */
        cmp     0,d0    /* no NULL function pointers */
        beq     L(error_inval)
@@ -75,6 +74,6 @@ L(here):
 #endif
        call    JUMPTARGET (_exit),[],0
 
-PSEUDO_END (BP_SYM (__clone))
+PSEUDO_END (__clone)
 
-weak_alias (BP_SYM (__clone), BP_SYM (clone))
+weak_alias (__clone, clone)