diff options
author | Andreas Jaeger <aj@suse.de> | 2001-06-05 06:21:21 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-06-05 06:21:21 +0000 |
commit | 6a7a8b22f64f780e8749edca9f998ebba6fdef4f (patch) | |
tree | 7320f66735aee7c9eae6c76dd21f5315e3e518c0 /sysdeps/arm | |
parent | 17827c3a399d597c020b87b786e0413075e72162 (diff) | |
download | glibc-6a7a8b22f64f780e8749edca9f998ebba6fdef4f.tar glibc-6a7a8b22f64f780e8749edca9f998ebba6fdef4f.tar.gz glibc-6a7a8b22f64f780e8749edca9f998ebba6fdef4f.tar.bz2 glibc-6a7a8b22f64f780e8749edca9f998ebba6fdef4f.zip |
Update.
2001-06-05 Andreas Jaeger <aj@suse.de>
* manual/libm-err-tab.pl (parse_ulps): Fix typo.
2001-06-04 H.J. Lu <hjl@gnu.org>
* sysdeps/alpha/elf/start.S: Add .type for the entry point.
* sysdeps/arm/elf/start.S: Likewise.
* sysdeps/hppa/elf/start.S: Likewise.
* sysdeps/i386/elf/start.S: Likewise.
* sysdeps/m68k/elf/start.S: Likewise.
* sysdeps/mips/elf/start.S: Likewise.
* sysdeps/ia64/elf/start.S: Likewise.
* sysdeps/sh/elf/start.S: Likewise.
* sysdeps/s390/s390-32/elf/start.S: Likewise.
* sysdeps/s390/s390-64/elf/start.S: Likewise.
* sysdeps/cris/elf/start.S: Likewise.
2001-06-04 Bruce Mitchener <bruce@cubik.org>
* manual/resource.texi: Correct setpriority/nice documentation.
* sysdeps/unix/nice.c: Correct nice() implementation.
Diffstat (limited to 'sysdeps/arm')
-rw-r--r-- | sysdeps/arm/elf/start.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/arm/elf/start.S b/sysdeps/arm/elf/start.S index 13b9c780ef..4d841c82d9 100644 --- a/sysdeps/arm/elf/start.S +++ b/sysdeps/arm/elf/start.S @@ -1,5 +1,5 @@ /* Startup code for ARM & ELF - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,12 +27,12 @@ At this entry point, most registers' values are unspecified, except: a1 Contains a function pointer to be registered with `atexit'. - This is how the dynamic linker arranges to have DT_FINI + This is how the dynamic linker arranges to have DT_FINI functions called for shared libraries that have been loaded before this code runs. sp The stack contains the arguments and environment: - 0(sp) argc + 0(sp) argc 4(sp) argv[0] ... (4*argc)(sp) NULL @@ -43,6 +43,7 @@ .text .globl _start + .type _start,@function _start: /* Clear the frame pointer since this is the outermost frame. */ mov fp, #0 |