]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Sat, 15 Apr 2000 03:54:55 +0000 (03:54 +0000)
committerAndreas Jaeger <aj@suse.de>
Sat, 15 Apr 2000 03:54:55 +0000 (03:54 +0000)
* 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.

ChangeLog
sysdeps/mips/addmul_1.S
sysdeps/mips/lshift.S
sysdeps/mips/mul_1.S
sysdeps/mips/rshift.S
sysdeps/mips/sub_n.S
sysdeps/mips/submul_1.S

index b4798122846e0a23d6b8b85491cb2c2a4fc32282..44613a03141ceeaeb5ea86b452b8bae9ccc94319 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        symidx correctly.
 
        * sysdeps/mips/add_n.S: Use __PIC__, add .end directive.
+       * 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.
 
        * stdlib/stdlib.h: Fix typo in comment.
 
index dc1dc1ba501cf0075bafcf86f83e51de28cdb286..131e3e8c946d7d3fdded358488c43140a28f9e6e 100644 (file)
@@ -1,7 +1,7 @@
 /* MIPS __mpn_addmul_1 -- Multiply a limb vector with a single limb and
 add the product to a second 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.  */
    size                $6
    s2_limb     $7
 */
-#ifdef PIC
+#ifdef __PIC__
        .option pic2
 #endif
 ENTRY (__mpn_addmul_1)
        .set    noreorder
-#ifdef PIC
+#ifdef __PIC__
        .cpload t9
 #endif
        .set    nomacro
@@ -96,3 +96,4 @@ $LC0: lw      $10,0($4)
        sw      $3,0($4)
        j       $31
        addu    $2,$9,$2        /* add high product limb and carry from addition */
+       END (__mpn_addmul_1)
\ No newline at end of file
index e76630310f51394a343a853db1ea80456ea45bc0..eac940161b608d05b301d8e0586e04b4ea934ca8 100644 (file)
@@ -1,6 +1,6 @@
 /* MIPS2 __mpn_lshift --
 
-Copyright (C) 1995 Free Software Foundation, Inc.
+Copyright (C) 1995, 2000 Free Software Foundation, Inc.
 
 This file is part of the GNU MP Library.
 
@@ -27,12 +27,12 @@ MA 02111-1307, USA.  */
    size                $6
    cnt         $7
 */
-#ifdef PIC
+#ifdef __PIC__
        .option pic2
 #endif
 ENTRY (__mpn_lshift)
        .set    noreorder
-#ifdef PIC
+#ifdef __PIC__
        .cpload t9
 #endif
        .set    nomacro
@@ -95,3 +95,4 @@ ENTRY (__mpn_lshift)
 .Lend: sll     $8,$10,$7
        j       $31
        sw      $8,-4($4)
+       END (__mpn_lshift)
\ No newline at end of file
index aeaf083d89e60d88d53946ca17452392ce90e474..4838ad0c8208bcf519acee5967682ed78bdde46e 100644 (file)
@@ -1,7 +1,7 @@
 /* MIPS __mpn_mul_1 -- Multiply a limb vector with a single limb and
 store the product in a second limb vector.
 
-Copyright (C) 1995, 1998 Free Software Foundation, Inc.
+Copyright (C) 1995, 1998, 2000 Free Software Foundation, Inc.
 
 This file is part of the GNU MP Library.
 
@@ -28,12 +28,12 @@ MA 02111-1307, USA.  */
    size                $6
    s2_limb     $7
 */
-#ifdef PIC
+#ifdef __PIC__
        .option pic2
 #endif
 ENTRY (__mpn_mul_1)
        .set    noreorder
-#ifdef PIC
+#ifdef __PIC__
        .cpload t9
 #endif
        .set    nomacro
@@ -84,3 +84,4 @@ $LC0: mflo    $10
        sw      $10,0($4)
        j       $31
        addu    $2,$9,$2        /* add high product limb and carry from addition */
+       END (__mpn_mul_1)
\ No newline at end of file
index 37bde2f7cd0f5069162de8f725690d4278378b74..7f10617319f5f99a82b6152de5a068a3f7dfd67c 100644 (file)
@@ -1,6 +1,6 @@
 /* MIPS2 __mpn_rshift --
 
-Copyright (C) 1995 Free Software Foundation, Inc.
+Copyright (C) 1995, 2000 Free Software Foundation, Inc.
 
 This file is part of the GNU MP Library.
 
@@ -27,12 +27,12 @@ MA 02111-1307, USA.  */
    size                $6
    cnt         $7
 */
-#ifdef PIC
+#ifdef __PIC__
        .option pic2
 #endif
 ENTRY (__mpn_rshift)
        .set    noreorder
-#ifdef PIC
+#ifdef __PIC__
        .cpload t9
 #endif
        .set    nomacro
@@ -92,3 +92,4 @@ ENTRY (__mpn_rshift)
 .Lend: srl     $8,$10,$7
        j       $31
        sw      $8,0($4)
+       END (__mpn_rshift)
\ No newline at end of file
index 09fbf7eeff2c13829a9a8eda1eb8c7f8411a5464..75d80c19f0716046e5913e0bb319d12a92f03697 100644 (file)
@@ -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)
index eae8ebbfafaaa9694549e6a086000d77407355a8..1aae1ed5e2a625f0873b41fa0235a382262c569b 100644 (file)
@@ -1,7 +1,7 @@
 /* MIPS __mpn_submul_1 -- Multiply a limb vector with a single limb and
 subtract the product from a second 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.  */
    size                $6
    s2_limb     $7
 */
-#ifdef PIC
+#ifdef __PIC__
        .option pic2
 #endif
 ENTRY (__mpn_submul_1)
        .set    noreorder
-#ifdef PIC
+#ifdef __PIC__
        .cpload t9
 #endif
        .set    nomacro
@@ -96,3 +96,4 @@ $LC0: lw      $10,0($4)
        sw      $3,0($4)
        j       $31
        addu    $2,$9,$2        /* add high product limb and carry from addition */
+       END (__mpn_submul_1)
This page took 0.05632 seconds and 5 git commands to generate.