diff options
author | Andreas Jaeger <aj@suse.de> | 2000-04-15 03:45:32 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-04-15 03:45:32 +0000 |
commit | fe81e98863567979207535d9968e13e63e52cc53 (patch) | |
tree | f930f140f3cd58a2133759b8fc133869135a5204 /sysdeps/mips/add_n.S | |
parent | c8c73ac377bb1295c588b8a2b52a38f82ece8b48 (diff) | |
download | glibc-fe81e98863567979207535d9968e13e63e52cc53.tar glibc-fe81e98863567979207535d9968e13e63e52cc53.tar.gz glibc-fe81e98863567979207535d9968e13e63e52cc53.tar.bz2 glibc-fe81e98863567979207535d9968e13e63e52cc53.zip |
Update.
* sysdeps/mips/dl-machine.h (elf_machine_got_rel): Initialize
symidx correctly.
* sysdeps/mips/add_n.S: Use __PIC__, add .end directive.
Diffstat (limited to 'sysdeps/mips/add_n.S')
-rw-r--r-- | sysdeps/mips/add_n.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/mips/add_n.S b/sysdeps/mips/add_n.S index df32eecfcf..aa94c1d001 100644 --- a/sysdeps/mips/add_n.S +++ b/sysdeps/mips/add_n.S @@ -1,7 +1,7 @@ /* MIPS2 __mpn_add_n -- Add two limb vectors of the same length > 0 and store sum in a third limb vector. -Copyright (C) 1995 Free Software Foundation, Inc. +Copyright (C) 1995, 2000 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -28,12 +28,12 @@ MA 02111-1307, USA. */ s2_ptr $6 size $7 */ -#ifdef PIC +#ifdef __PIC__ .option pic2 #endif ENTRY (__mpn_add_n) .set noreorder -#ifdef PIC +#ifdef __PIC__ .cpload t9 #endif .set nomacro @@ -119,3 +119,4 @@ ENTRY (__mpn_add_n) sw $11,0($4) j $31 or $2,$2,$8 + .end __mpn_add_n
\ No newline at end of file |