diff options
author | Andreas Jaeger <aj@suse.de> | 2000-04-15 03:54:55 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-04-15 03:54:55 +0000 |
commit | 90bf0e0731a9a43c4d0ee05ccfa06d03dfb0fe94 (patch) | |
tree | 37cd5ed1a4214d83189609a6a5908580830815b3 /sysdeps/mips/sub_n.S | |
parent | fe81e98863567979207535d9968e13e63e52cc53 (diff) | |
download | glibc-90bf0e0731a9a43c4d0ee05ccfa06d03dfb0fe94.tar.gz glibc-90bf0e0731a9a43c4d0ee05ccfa06d03dfb0fe94.tar.xz glibc-90bf0e0731a9a43c4d0ee05ccfa06d03dfb0fe94.zip |
Update.
* sysdeps/mips/addmul_1.S: Likewise. * sysdeps/mips/lshift.S: Likewise. * sysdeps/mips/mul_1.S: Likewise. * sysdeps/mips/rshift.S: Likewise. * sysdeps/mips/sub_n.S: Likewise. * sysdeps/mips/submul_1.S: Likewise.
Diffstat (limited to 'sysdeps/mips/sub_n.S')
-rw-r--r-- | sysdeps/mips/sub_n.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/mips/sub_n.S b/sysdeps/mips/sub_n.S index 09fbf7eeff..75d80c19f0 100644 --- a/sysdeps/mips/sub_n.S +++ b/sysdeps/mips/sub_n.S @@ -1,7 +1,7 @@ /* MIPS2 __mpn_sub_n -- Subtract two limb vectors of the same length > 0 and store difference 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_sub_n) .set noreorder -#ifdef PIC +#ifdef __PIC__ .cpload t9 #endif .set nomacro @@ -119,3 +119,4 @@ ENTRY (__mpn_sub_n) sw $11,0($4) j $31 or $2,$2,$8 + END (__mpn_sub_n) |