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]

GNU C Library master sources branch, master, updated. glibc-2.14-355-g349290c


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 "GNU C Library master sources".

The branch, master has been updated
       via  349290c00a26567051ef953efcb874d7ee7def1e (commit)
       via  6b1f68c91f6e2a10280b3af00969c65d2343d873 (commit)
      from  f2282d42b49dcae001c269aeed4d9dbf74c5ca63 (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.git;a=commitdiff;h=349290c00a26567051ef953efcb874d7ee7def1e

commit 349290c00a26567051ef953efcb874d7ee7def1e
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri Oct 14 11:41:06 2011 +0200

    Adjust s390 libm ULPs

diff --git a/ChangeLog b/ChangeLog
index 5e5b566..2faba53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2011-10-14  Andreas Schwab  <schwab@redhat.com>
 
+	* sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
+
 	* sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
 
 2011-10-13  Roland McGrath  <roland@hack.frob.com>
diff --git a/sysdeps/s390/fpu/libm-test-ulps b/sysdeps/s390/fpu/libm-test-ulps
index 989722e..a014baf 100644
--- a/sysdeps/s390/fpu/libm-test-ulps
+++ b/sysdeps/s390/fpu/libm-test-ulps
@@ -647,8 +647,15 @@ ifloat: 3
 ildouble: 2
 ldouble: 2
 Test "jn (10, 2.0) == 0.251538628271673670963516093751820639e-6":
+double: 1
 float: 4
+idouble: 1
 ifloat: 4
+Test "jn (2, 2.4048255576957729) == 0.43175480701968038399746111312430703":
+double: 2
+float: 1
+idouble: 2
+ifloat: 1
 Test "jn (3, 0.125) == 0.406503832554912875023029337653442868e-4":
 double: 1
 float: 1
@@ -671,6 +678,37 @@ double: 1
 float: 2
 idouble: 1
 ifloat: 2
+Test "jn (3, 2.4048255576957729) == 0.19899990535769083404042146764530813":
+double: 3
+idouble: 3
+Test "jn (4, 2.4048255576957729) == 0.647466661641779720084932282551219891E-1":
+double: 1
+idouble: 1
+Test "jn (5, 2.4048255576957729) == 0.163892432048058525099230549946147698E-1":
+double: 3
+float: 1
+idouble: 3
+ifloat: 1
+Test "jn (6, 2.4048255576957729) == 0.34048184720278336646673682895929161E-2":
+double: 4
+float: 3
+idouble: 4
+ifloat: 3
+Test "jn (7, 2.4048255576957729) == 0.60068836573295394221291569249883076E-3":
+double: 3
+float: 5
+idouble: 3
+ifloat: 5
+Test "jn (8, 2.4048255576957729) == 0.92165786705344923232879022467054148E-4":
+double: 3
+float: 2
+idouble: 3
+ifloat: 2
+Test "jn (9, 2.4048255576957729) == 0.12517270977961513005428966643852564E-4":
+double: 1
+float: 2
+idouble: 1
+ifloat: 2
 
 # lgamma
 Test "lgamma (-0.5) == log(2*sqrt(pi))":
@@ -1245,9 +1283,9 @@ ldouble: 4
 
 Function: "jn":
 double: 4
-float: 4
+float: 5
 idouble: 4
-ifloat: 4
+ifloat: 5
 ildouble: 4
 ldouble: 4
 

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6b1f68c91f6e2a10280b3af00969c65d2343d873

commit 6b1f68c91f6e2a10280b3af00969c65d2343d873
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri Oct 14 11:21:05 2011 +0200

    Fix lost feraiseexcept symbol

diff --git a/ChangeLog b/ChangeLog
index 89611bd..5e5b566 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-10-14  Andreas Schwab  <schwab@redhat.com>
+
+	* sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
+
 2011-10-13  Roland McGrath  <roland@hack.frob.com>
 
 	[BZ #13291]
diff --git a/sysdeps/x86_64/fpu/fraiseexcpt.c b/sysdeps/x86_64/fpu/fraiseexcpt.c
index d0f1422..88d1a59 100644
--- a/sysdeps/x86_64/fpu/fraiseexcpt.c
+++ b/sysdeps/x86_64/fpu/fraiseexcpt.c
@@ -117,4 +117,5 @@ __feraiseexcept (int excepts)
   /* Success.  */
   return 0;
 }
-libm_hidden_ver (__feraiseexcept, feraiseexcept)
+strong_alias (__feraiseexcept, feraiseexcept)
+libm_hidden_def (feraiseexcept)

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

Summary of changes:
 ChangeLog                        |    6 +++++
 sysdeps/s390/fpu/libm-test-ulps  |   42 ++++++++++++++++++++++++++++++++++++-
 sysdeps/x86_64/fpu/fraiseexcpt.c |    3 +-
 3 files changed, 48 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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