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.18-702-g6c9642e


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  6c9642eda644eb76e03776e16dae41b624a709b9 (commit)
      from  46c0cc3aa5c4492c0f01be5158a9e4a60bf9fe4b (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=6c9642eda644eb76e03776e16dae41b624a709b9

commit 6c9642eda644eb76e03776e16dae41b624a709b9
Author: Allan McRae <allan@archlinux.org>
Date:   Fri Dec 27 12:27:46 2013 +1000

    Fix typo in csloww()
    
    An incorrect variable name was used during the refactoring done in
    commit 4aafb73c.

diff --git a/ChangeLog b/ChangeLog
index 584f589..93dceec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-12-27  Allan McRae  <allan@archlinux.org>
+
+	[BZ #16369]
+	* sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
+	Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
+
 2013-12-24  Brooks Moses  <bmoses@google.com>
 
 	* string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
diff --git a/NEWS b/NEWS
index f3c19d8..fcf679a 100644
--- a/NEWS
+++ b/NEWS
@@ -23,7 +23,7 @@ Version 2.19
   16038, 16041, 16055, 16071, 16072, 16074, 16077, 16078, 16103, 16112,
   16143, 16144, 16146, 16150, 16151, 16153, 16167, 16172, 16195, 16214,
   16245, 16271, 16274, 16283, 16289, 16293, 16314, 16316, 16330, 16337,
-  16338, 16356.
+  16338, 16356, 16369.
 
 * The public headers no longer use __unused nor __block.  This change is to
   support compiling programs that are derived from BSD sources and use
diff --git a/sysdeps/ieee754/dbl-64/s_sin.c b/sysdeps/ieee754/dbl-64/s_sin.c
index bd2346c..edc4415 100644
--- a/sysdeps/ieee754/dbl-64/s_sin.c
+++ b/sysdeps/ieee754/dbl-64/s_sin.c
@@ -1102,7 +1102,7 @@ csloww (double x, double dx, double orig)
   int4 n;
 
   /* Taylor series */
-  t = TAYLOR_SLOW (x, dx, cor);
+  res = TAYLOR_SLOW (x, dx, cor);
 
   if (cor > 0)
     cor = 1.0005 * cor + ABS (orig) * 3.1e-30;

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

Summary of changes:
 ChangeLog                      |    6 ++++++
 NEWS                           |    2 +-
 sysdeps/ieee754/dbl-64/s_sin.c |    2 +-
 3 files changed, 8 insertions(+), 2 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]