This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Community source repository for glibc add-on ports branch, master, updated. glibc-2.14-39-gf2d9d90


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Community source repository for glibc add-on ports".

The branch, master has been updated
       via  f2d9d9095cfd950a8f187cecb77d8b84d2f86da2 (commit)
       via  0ea4e188a6b298ae1c5f5dee7432cf7270b91cf6 (commit)
      from  b0835b4569c0b21deb318ed31b2ed7cabaaf078b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=f2d9d9095cfd950a8f187cecb77d8b84d2f86da2

commit f2d9d9095cfd950a8f187cecb77d8b84d2f86da2
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sun Oct 23 16:40:33 2011 +0200

    m68k/cf: add __sqrt*_finite aliases

diff --git a/ChangeLog.m68k b/ChangeLog.m68k
index 69aa1ba..d7e03ef 100644
--- a/ChangeLog.m68k
+++ b/ChangeLog.m68k
@@ -1,5 +1,8 @@
 2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
 
+	* sysdeps/m68k/coldfire/fpu/e_sqrt.c: Add __sqrt_finite alias.
+	* sysdeps/m68k/coldfire/fpu/e_sqrtf.c: Add __sqrtf_finite alias.
+
 	* sysdeps/m68k/m680x0/fpu/e_exp.c (FUNC_FINITE): Define.
 	* sysdeps/m68k/m680x0/fpu/e_expf.c (FUNC_FINITE): Define.
 	* sysdeps/m68k/m680x0/fpu/e_expl.c (FUNC_FINITE): Define.
diff --git a/sysdeps/m68k/coldfire/fpu/e_sqrt.c b/sysdeps/m68k/coldfire/fpu/e_sqrt.c
index a160308..b6c67e8 100644
--- a/sysdeps/m68k/coldfire/fpu/e_sqrt.c
+++ b/sysdeps/m68k/coldfire/fpu/e_sqrt.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2006 Free Software Foundation, Inc.
+/* Copyright (C) 2006, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -22,3 +22,4 @@ __ieee754_sqrt (double x)
   asm ("fdsqrt.d %1,%0" : "=f" (x) : "fm" (x));
   return x;
 }
+strong_alias (__ieee754_sqrt, __sqrt_finite)
diff --git a/sysdeps/m68k/coldfire/fpu/e_sqrtf.c b/sysdeps/m68k/coldfire/fpu/e_sqrtf.c
index 7cfc0dd..e0481b8 100644
--- a/sysdeps/m68k/coldfire/fpu/e_sqrtf.c
+++ b/sysdeps/m68k/coldfire/fpu/e_sqrtf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2006 Free Software Foundation, Inc.
+/* Copyright (C) 2006, 2011 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -23,3 +23,4 @@ __ieee754_sqrtf (float x)
   asm ("fssqrt.s %1,%0" : "=f" (result) : "dm" (x));
   return result;
 }
+strong_alias (__ieee754_sqrtf, __sqrtf_finite)

http://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=0ea4e188a6b298ae1c5f5dee7432cf7270b91cf6

commit 0ea4e188a6b298ae1c5f5dee7432cf7270b91cf6
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Sun Oct 23 14:25:00 2011 +0200

    m68k: add __exp*_finite aliases

diff --git a/ChangeLog.m68k b/ChangeLog.m68k
index 3c4adf6..69aa1ba 100644
--- a/ChangeLog.m68k
+++ b/ChangeLog.m68k
@@ -1,3 +1,9 @@
+2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* sysdeps/m68k/m680x0/fpu/e_exp.c (FUNC_FINITE): Define.
+	* sysdeps/m68k/m680x0/fpu/e_expf.c (FUNC_FINITE): Define.
+	* sysdeps/m68k/m680x0/fpu/e_expl.c (FUNC_FINITE): Define.
+
 2011-10-22  Andreas Schwab  <schwab@linux-m68k.org>
 
 	* sysdeps/m68k/m680x0/fpu/s_ccos.c: Remove.
diff --git a/sysdeps/m68k/m680x0/fpu/e_exp.c b/sysdeps/m68k/m680x0/fpu/e_exp.c
index 1e95ac4..9f22803 100644
--- a/sysdeps/m68k/m680x0/fpu/e_exp.c
+++ b/sysdeps/m68k/m680x0/fpu/e_exp.c
@@ -1,2 +1,3 @@
-#define	FUNC	__ieee754_exp
+#define FUNC __ieee754_exp
+#define FUNC_FINITE __exp_finite
 #include <e_acos.c>
diff --git a/sysdeps/m68k/m680x0/fpu/e_expf.c b/sysdeps/m68k/m680x0/fpu/e_expf.c
index 2aeaacf..af1e019 100644
--- a/sysdeps/m68k/m680x0/fpu/e_expf.c
+++ b/sysdeps/m68k/m680x0/fpu/e_expf.c
@@ -1,2 +1,3 @@
-#define	FUNC	__ieee754_expf
+#define FUNC __ieee754_expf
+#define FUNC_FINITE __expf_finite
 #include <e_acosf.c>
diff --git a/sysdeps/m68k/m680x0/fpu/e_expl.c b/sysdeps/m68k/m680x0/fpu/e_expl.c
index 8805a1b..543eb0e 100644
--- a/sysdeps/m68k/m680x0/fpu/e_expl.c
+++ b/sysdeps/m68k/m680x0/fpu/e_expl.c
@@ -1,2 +1,3 @@
 #define FUNC __ieee754_expl
+#define FUNC_FINITE __expl_finite
 #include <e_acosl.c>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog.m68k                      |    9 +++++++++
 sysdeps/m68k/coldfire/fpu/e_sqrt.c  |    3 ++-
 sysdeps/m68k/coldfire/fpu/e_sqrtf.c |    3 ++-
 sysdeps/m68k/m680x0/fpu/e_exp.c     |    3 ++-
 sysdeps/m68k/m680x0/fpu/e_expf.c    |    3 ++-
 sysdeps/m68k/m680x0/fpu/e_expl.c    |    1 +
 6 files changed, 18 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]