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 release/2.22/master updated. glibc-2.22-75-gee55e3c


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, release/2.22/master has been updated
       via  ee55e3c8fbc1b24aa725b5d6e6fe8c838bc92696 (commit)
      from  b5714a32f8d81c1e9834af8a4e12572e8d59195e (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=ee55e3c8fbc1b24aa725b5d6e6fe8c838bc92696

commit ee55e3c8fbc1b24aa725b5d6e6fe8c838bc92696
Author: Steve Ellcey <sellcey@mips.com>
Date:   Fri Dec 11 09:19:37 2015 -0800

    Fix indentation.
    
    	* sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
    	Fix indentation.
    
    (cherry picked from commit 976ef870542580cf5fed896c2c652b3e1a95f9da)

diff --git a/ChangeLog b/ChangeLog
index d0cfdde..961fc2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-12-11  Steve Ellcey  <sellcey@imgtec.com>
+
+	* sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
+	Fix indentation.
+
 2015-09-18  Wilco Dijkstra  <wdijkstr@arm.com>
 
 	* resolv/base64.c (rcsid): Remove unused static.
diff --git a/sysdeps/ieee754/flt-32/k_rem_pio2f.c b/sysdeps/ieee754/flt-32/k_rem_pio2f.c
index 6f14d5b..153ebca 100644
--- a/sysdeps/ieee754/flt-32/k_rem_pio2f.c
+++ b/sysdeps/ieee754/flt-32/k_rem_pio2f.c
@@ -65,7 +65,9 @@ int __kernel_rem_pio2f(float *x, float *y, int e0, int nx, int prec, const int32
 
     /* compute q[0],q[1],...q[jk] */
 	for (i=0;i<=jk;i++) {
-	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
+	    for(j=0,fw=0.0;j<=jx;j++)
+		fw += x[j]*f[jx+i-j];
+	    q[i] = fw;
 	}
 
 	jz = jk;

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

Summary of changes:
 ChangeLog                            |    5 +++++
 sysdeps/ieee754/flt-32/k_rem_pio2f.c |    4 +++-
 2 files changed, 8 insertions(+), 1 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]