]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 19 Feb 2001 22:11:23 +0000 (22:11 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 19 Feb 2001 22:11:23 +0000 (22:11 +0000)
2001-02-19  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/ia64/fpu/Makefile (libm-sysdep-routines): Add libm_error,
libm_frexp4, libm_frexp4f, libm_frexp4l, and all the functions also
in libc.
(routines): Replace libm_error with libc_libm_error.
* sysdeps/ia64/fpu/Dist: Add libc_libm_error.c.
* sysdeps/ia64/fpu/libc_libm_error.c: New file.

ChangeLog
sysdeps/ia64/fpu/Dist
sysdeps/ia64/fpu/Makefile
sysdeps/ia64/fpu/libc_libm_error.c [new file with mode: 0644]

index fcf5d23172126d0d4532d024b8898ac3f699d21c..5c3212c3dbceed37953bef1789b0e3914cc08d55 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2001-02-19  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/ia64/fpu/Makefile (libm-sysdep-routines): Add libm_error,
+       libm_frexp4, libm_frexp4f, libm_frexp4l, and all the functions also
+       in libc.
+       (routines): Replace libm_error with libc_libm_error.
+       * sysdeps/ia64/fpu/Dist: Add libc_libm_error.c.
+       * sysdeps/ia64/fpu/libc_libm_error.c: New file.
+
 2001-02-18  Mark Kettenis  <kettenis@gnu.org>
 
        * malloc/mtrace.c [USE_IN_LIBIO]: Define fopen as _IO_fopen64.
index ae51e76a8b2ef6dca37245c18b8a3fee1bcef5a3..cc2617607a58ed0064ddb40683c3bd7dc65ff97e 100644 (file)
@@ -1,3 +1,4 @@
+libc_libm_error.c
 libm_atan2_reg.S
 libm_error.c
 libm_reduce.S
index e5237ffa84b9baba00131205a6583824c40ccb1e..dee9ba78c7161a4a2f08922ee1ba8b6168dca228 100644 (file)
@@ -1,7 +1,9 @@
 ifeq ($(subdir),math)
 libm-sysdep_routines += libm_atan2_reg s_matherrf s_matherrl libm_reduce \
-                       libm_tan
+                       libm_tan libm_error \
+                       $(calls) $(calls:=f) $(long-c-$(long-double-fcts)) \
+                       libm_frexp4 libm_frexp4f libm_frexp4l
 
-routines += libm_frexp4 libm_frexp4f libm_frexp4l libm_error
+routines += libm_frexp4 libm_frexp4f libm_frexp4l libc_libm_error
 CPPFLAGS += -DSIZE_INT_32
 endif
diff --git a/sysdeps/ia64/fpu/libc_libm_error.c b/sysdeps/ia64/fpu/libc_libm_error.c
new file mode 100644 (file)
index 0000000..83a0bae
--- /dev/null
@@ -0,0 +1,13 @@
+/* Error handling in libm-style for libc.  */
+
+#include <errno.h>
+
+#include "libm_support.h"
+
+
+void
+__libm_error_support (void *arg1, void *arg2, void *retval,
+                     error_types input_tag)
+{
+  __set_errno (ERANGE);
+}
This page took 0.04985 seconds and 5 git commands to generate.