* sysdeps/ieee754/dbl-64/e_pow.c (log2): Rename to my_log2 to
authorAndreas Jaeger <aj@suse.de>
Fri, 23 Jan 2004 13:17:52 +0000 (13:17 +0000)
committerAndreas Jaeger <aj@suse.de>
Fri, 23 Jan 2004 13:17:52 +0000 (13:17 +0000)
avoid warnings for builtin function log2.

2004-01-22  Andreas Jaeger  <aj@suse.de>

ChangeLog
linuxthreads/ChangeLog
linuxthreads/spinlock.c
sysdeps/ieee754/dbl-64/e_pow.c

index 854dcef..ec086db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2004-01-22  Andreas Jaeger  <aj@suse.de>
 
+       * sysdeps/ieee754/dbl-64/e_pow.c (log2): Rename to my_log2 to
+       avoid warnings for builtin function log2.
+
+2004-01-22  Andreas Jaeger  <aj@suse.de>
+
        * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Add proper unwind
        information.
 
index 70558eb..827fdd9 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-22  Andreas Jaeger  <aj@suse.de>
+
+       * spinlock.c (__pthread_lock): Fix contraint to avoid warning.
+       (__pthread_release): Likewise.
+
 2004-01-16  Richard Henderson  <rth@redhat.com>
 
         * attr.c: Include ldsodefs.h.
index 47107bf..08fff08 100644 (file)
@@ -30,7 +30,7 @@ static inline void __pthread_release(int * spinlock)
 {
   WRITE_MEMORY_BARRIER();
   *spinlock = __LT_SPINLOCK_INIT;
-  __asm __volatile ("" : "=m" (*spinlock) : "0" (*spinlock));
+  __asm __volatile ("" : "=m" (*spinlock) : "m" (*spinlock));
 }
 
 
@@ -106,7 +106,7 @@ void internal_function __pthread_lock(struct _pthread_fastlock * lock,
 #ifdef BUSY_WAIT_NOP
       BUSY_WAIT_NOP;
 #endif
-      __asm __volatile ("" : "=m" (lock->__status) : "0" (lock->__status));
+      __asm __volatile ("" : "=m" (lock->__status) : "m" (lock->__status));
     }
 
     lock->__spinlock += (spin_count - lock->__spinlock) / 8;
index e4be5c6..d9bd8b4 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * IBM Accurate Mathematical Library
  * written by International Business Machines Corp.
- * Copyright (C) 2001, 2002 Free Software Foundation
+ * Copyright (C) 2001, 2002, 2004 Free Software Foundation
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -22,7 +22,7 @@
 /*                                                                         */
 /*  FUNCTIONS: upow                                                        */
 /*             power1                                                      */
-/*             log2                                                        */
+/*             my_log2                                                        */
 /*             log1                                                        */
 /*             checkint                                                    */
 /* FILES NEEDED: dla.h endian.h mpa.h mydefs.h                             */
@@ -46,7 +46,7 @@
 
 double __exp1(double x, double xx, double error);
 static double log1(double x, double *delta, double *error);
-static double log2(double x, double *delta, double *error);
+static double my_log2(double x, double *delta, double *error);
 double __slowpow(double x, double y,double z);
 static double power1(double x, double y);
 static int checkint(double x);
@@ -159,7 +159,7 @@ double __ieee754_pow(double x, double y) {
 /**************************************************************************/
 static double power1(double x, double y) {
   double z,a,aa,error, t,a1,a2,y1,y2;
-  z = log2(x,&aa,&error);
+  z = my_log2(x,&aa,&error);
   t = y*134217729.0;
   y1 = t - (t-y);
   y2 = y - y1;
@@ -272,7 +272,7 @@ static double log1(double x, double *delta, double *error) {
 /* Computing log(x)(x is left argument).The result is return double + delta.*/
 /* The result is bounded by error (right argument)                           */
 /****************************************************************************/
-static double log2(double x, double *delta, double *error) {
+static double my_log2(double x, double *delta, double *error) {
   int i,j,m;
 #if 0
   int n;