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/s390 | |
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/s390')
-rw-r--r-- | sysdeps/s390/s390-32/elf/start.S | 1 | ||||
-rw-r--r-- | sysdeps/s390/s390-64/elf/start.S | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/s390/s390-32/elf/start.S b/sysdeps/s390/s390-32/elf/start.S index 7313b92e08..104f68096a 100644 --- a/sysdeps/s390/s390-32/elf/start.S +++ b/sysdeps/s390/s390-32/elf/start.S @@ -39,6 +39,7 @@ .text .globl _start + type _start,@function _start: /* Setup pointer to literal pool of _start */ basr %r13,0 diff --git a/sysdeps/s390/s390-64/elf/start.S b/sysdeps/s390/s390-64/elf/start.S index d85c0805a9..981d3e892c 100644 --- a/sysdeps/s390/s390-64/elf/start.S +++ b/sysdeps/s390/s390-64/elf/start.S @@ -18,7 +18,7 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* +/* This is the canonical entry point, usually the first thing in the text segment. Most registers' values are unspecified, except for: @@ -39,6 +39,7 @@ .text .globl _start + type _start,@function _start: /* Load argc and argv from stack. */ la %r4,8(%r15) # get argv @@ -69,7 +70,7 @@ _start: .word 0 /* FIXME: FPU flags or what ?!? */ - + .section .rodata .globl _fp_hw .long 3 |