* 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>
This commit is contained in:
Andreas Jaeger 2004-01-23 13:17:52 +00:00
parent 4ef0929571
commit 1f81acbcbc
4 changed files with 17 additions and 7 deletions

View File

@ -1,3 +1,8 @@
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> 2004-01-22 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/x86_64/setcontext.S: Add proper unwind * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Add proper unwind

View 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> 2004-01-16 Richard Henderson <rth@redhat.com>
* attr.c: Include ldsodefs.h. * attr.c: Include ldsodefs.h.

View File

@ -30,7 +30,7 @@ static inline void __pthread_release(int * spinlock)
{ {
WRITE_MEMORY_BARRIER(); WRITE_MEMORY_BARRIER();
*spinlock = __LT_SPINLOCK_INIT; *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 #ifdef BUSY_WAIT_NOP
BUSY_WAIT_NOP; BUSY_WAIT_NOP;
#endif #endif
__asm __volatile ("" : "=m" (lock->__status) : "0" (lock->__status)); __asm __volatile ("" : "=m" (lock->__status) : "m" (lock->__status));
} }
lock->__spinlock += (spin_count - lock->__spinlock) / 8; lock->__spinlock += (spin_count - lock->__spinlock) / 8;

View File

@ -1,7 +1,7 @@
/* /*
* IBM Accurate Mathematical Library * IBM Accurate Mathematical Library
* written by International Business Machines Corp. * 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 * 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 * it under the terms of the GNU Lesser General Public License as published by
@ -22,7 +22,7 @@
/* */ /* */
/* FUNCTIONS: upow */ /* FUNCTIONS: upow */
/* power1 */ /* power1 */
/* log2 */ /* my_log2 */
/* log1 */ /* log1 */
/* checkint */ /* checkint */
/* FILES NEEDED: dla.h endian.h mpa.h mydefs.h */ /* FILES NEEDED: dla.h endian.h mpa.h mydefs.h */
@ -46,7 +46,7 @@
double __exp1(double x, double xx, double error); double __exp1(double x, double xx, double error);
static double log1(double x, double *delta, 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); double __slowpow(double x, double y,double z);
static double power1(double x, double y); static double power1(double x, double y);
static int checkint(double x); static int checkint(double x);
@ -159,7 +159,7 @@ double __ieee754_pow(double x, double y) {
/**************************************************************************/ /**************************************************************************/
static double power1(double x, double y) { static double power1(double x, double y) {
double z,a,aa,error, t,a1,a2,y1,y2; 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; t = y*134217729.0;
y1 = t - (t-y); y1 = t - (t-y);
y2 = y - y1; 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.*/ /* Computing log(x)(x is left argument).The result is return double + delta.*/
/* The result is bounded by error (right argument) */ /* 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; int i,j,m;
#if 0 #if 0
int n; int n;