]> sourceware.org Git - glibc.git/commitdiff
* sysdeps/alpha/soft-fp/Makefile (CPPFLAGS): Add soft-fp include ...
authorRichard Henderson <rth@redhat.com>
Mon, 20 Feb 2006 22:51:48 +0000 (22:51 +0000)
committerRichard Henderson <rth@redhat.com>
Mon, 20 Feb 2006 22:51:48 +0000 (22:51 +0000)
        * sysdeps/unix/sysv/linux/alpha/fxstatat.c: Fix hidden defs.
2006-02-20  Richard Henderson  <rth@redhat.com>

* sysdeps/alpha/soft-fp/Makefile (CPPFLAGS): Add soft-fp include
to math subdir.
* sysdeps/alpha/soft-fp/e_sqrtl.c: Don't use local-soft-fp.h.
(__ieee754_sqrtl): Add _round local variable.
* sysdeps/unix/sysv/linux/alpha/fpu/Implies: Remove.

* sysdeps/unix/sysv/linux/alpha/fxstatat.c: Fix hidden defs.

ChangeLog
sysdeps/alpha/soft-fp/Makefile
sysdeps/alpha/soft-fp/e_sqrtl.c
sysdeps/unix/sysv/linux/alpha/fpu/Implies [deleted file]
sysdeps/unix/sysv/linux/alpha/fxstatat.c

index 30bdba34f6acd5edc1ca9972e27b405117227460..cc700156bdf008e01fb15cdc383c7b4bf85c64a1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2006-02-20  Richard Henderson  <rth@redhat.com>
+
+       * sysdeps/alpha/soft-fp/Makefile (CPPFLAGS): Add soft-fp include
+       to math subdir.
+       * sysdeps/alpha/soft-fp/e_sqrtl.c: Don't use local-soft-fp.h.
+       (__ieee754_sqrtl): Add _round local variable.
+       * sysdeps/unix/sysv/linux/alpha/fpu/Implies: Remove.
+
+       * sysdeps/unix/sysv/linux/alpha/fxstatat.c: Fix hidden defs.
+
 2006-02-20  Roland McGrath  <roland@frob.com>
 
        * hurd/hurd/xattr.h: New file.
index d7e7e2684a484ca1923f25fb81c0527d683b23f9..5410a78984e37ad0901c4657dab60c67264ffcf6 100644 (file)
@@ -4,3 +4,7 @@ ifeq ($(subdir),soft-fp)
 sysdep_routines += ots_add ots_sub ots_mul ots_div ots_cmp ots_cmpe    \
        ots_cvtxq ots_cvtqx ots_cvtqux ots_cvttx ots_cvtxt ots_nintxq
 endif
+
+ifeq ($(subdir),math)
+CPPFLAGS += -I../soft-fp
+endif
index a1d09725b787b26be81c2c34cc2264259e644193..717d170127dcbc113d52212da5e42584e81677f0 100644 (file)
@@ -19,7 +19,9 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
-#include "local-soft-fp.h"
+#include <stdlib.h>
+#include <soft-fp.h>
+#include <quad.h>
 
 long double
 __ieee754_sqrtl (const long double a)
@@ -27,6 +29,7 @@ __ieee754_sqrtl (const long double a)
   FP_DECL_EX;
   FP_DECL_Q(A); FP_DECL_Q(C);
   long double c;
+  long _round = 4;     /* dynamic rounding */
 
   FP_INIT_ROUNDMODE;
   FP_UNPACK_Q(A, a);
diff --git a/sysdeps/unix/sysv/linux/alpha/fpu/Implies b/sysdeps/unix/sysv/linux/alpha/fpu/Implies
deleted file mode 100644 (file)
index d76f511..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-# Override ldbl-opt with alpha specific routines.
-alpha/fpu
index 4cb304cb4098813aac5290fe5ecca65f0bda64d5..497694619a1b3418f02ad0184bbabb625bdab58e 100644 (file)
@@ -94,5 +94,6 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
 
   return -1;
 }
-strong_alias (__fxstatat, __fxstatat64)
-strong_alias (__fxstatat64, __GI___fxstatat64)
+libc_hidden_def (__fxstatat)
+strong_alias (__fxstatat, __fxstatat64);
+libc_hidden_ver(__fxstatat, __fxstatat64);
This page took 0.053839 seconds and 5 git commands to generate.