diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-28 21:28:57 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-28 21:28:57 +0000 |
commit | c7a8ba94040820cd324e02babc2d340d395138fc (patch) | |
tree | a72d9949696d51f4f7af6b2e802006a0a4081b77 /ports/sysdeps/am33/elf | |
parent | b5510883226aede4e54f9271bbfa9d5585038bde (diff) | |
download | glibc-c7a8ba94040820cd324e02babc2d340d395138fc.tar.gz |
Remove bounded-pointers relics from am33 code.
Diffstat (limited to 'ports/sysdeps/am33/elf')
-rw-r--r-- | ports/sysdeps/am33/elf/start.S | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ports/sysdeps/am33/elf/start.S b/ports/sysdeps/am33/elf/start.S index 0ca71f14a4..e89f9db15c 100644 --- a/ports/sysdeps/am33/elf/start.S +++ b/ports/sysdeps/am33/elf/start.S @@ -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 |