diff options
author | Jim Wilson <wilson@redhat.com> | 2002-09-27 20:26:00 +0000 |
---|---|---|
committer | Jim Wilson <wilson@redhat.com> | 2002-09-27 20:26:00 +0000 |
commit | 59a758bd3193a83d08ad78e289fbe3266bff09af (patch) | |
tree | ba8e09e867b5b434bc5d4f9ed2f3657ff4c48838 /newlib | |
parent | 1ed3c86dd72ba76b9a1048bbd4b756899f803302 (diff) | |
download | newlib-59a758bd3193a83d08ad78e289fbe3266bff09af.zip newlib-59a758bd3193a83d08ad78e289fbe3266bff09af.tar.gz newlib-59a758bd3193a83d08ad78e289fbe3266bff09af.tar.bz2 |
The v850 does not have a ctbp register.
Add myself to write-after-approval section of MAINTAINERS file.
* libc/sys/sysnecv850/crt0.S (start): Delete v850 code for initializing
the ctbp register.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/MAINTAINERS | 1 | ||||
-rw-r--r-- | newlib/libc/sys/sysnecv850/crt0.S | 10 |
3 files changed, 6 insertions, 10 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index faab582..052e372 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2002-09-27 Jim Wilson <wilson@redhat.com> + + * libc/sys/sysnecv850/crt0.S (start): Delete v850 code for initializing + the ctbp register. + 2002-09-27 Jeff Johnston <jjohnstn@redhat.com> * libc/ctype/jp2uc.c: Change to use multiple arrays in jp2uc.h. diff --git a/newlib/MAINTAINERS b/newlib/MAINTAINERS index 6e2e9f0..2cd300d 100644 --- a/newlib/MAINTAINERS +++ b/newlib/MAINTAINERS @@ -35,3 +35,4 @@ These are users with general write privileges after getting approval: DJ Delorie dj@redhat.com Christopher G. Faylor cgf@redhat.com +Jim Wilson wilson@redhat.com diff --git a/newlib/libc/sys/sysnecv850/crt0.S b/newlib/libc/sys/sysnecv850/crt0.S index 15d94dc..e988bad 100644 --- a/newlib/libc/sys/sysnecv850/crt0.S +++ b/newlib/libc/sys/sysnecv850/crt0.S @@ -42,16 +42,6 @@ _start: movhi hi(__gp), r0, gp movea lo(__gp), gp, gp - /* Initialise the call table base pointer. - We do this even though we are supposedly - assembling this file for the v850 as this - allows us to use the same binary for all - versions of the v850 architecture. */ - - movhi hi(__ctbp), r0, r6 - movea lo(__ctbp), r6, r6 - ldsr r6, ctbp - movhi hi(_edata), r0, r6 movea lo(_edata), r6, r6 movhi hi(_end), r0, r7 |