about summary refs log tree commit diff
path: root/sysdeps/ieee754/flt-32/e_rem_pio2f.c
diff options
context:
space:
mode:
authorOndrej Bilka <neleai@seznam.cz>2013-06-06 19:36:03 +0200
committerOndrej Bilka <neleai@seznam.cz>2013-06-06 20:36:07 +0200
commit350635a59a000fa4561d0d8bbe6814b4b9df530c (patch)
treeab4ec502e1944f8290eba1102ac210a3806b92a3 /sysdeps/ieee754/flt-32/e_rem_pio2f.c
parent25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff)
downloadglibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.gz
glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.xz
glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.zip
Fix leading whitespaces.
Diffstat (limited to 'sysdeps/ieee754/flt-32/e_rem_pio2f.c')
-rw-r--r--sysdeps/ieee754/flt-32/e_rem_pio2f.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/ieee754/flt-32/e_rem_pio2f.c b/sysdeps/ieee754/flt-32/e_rem_pio2f.c
index 702fbf520d..0928373498 100644
--- a/sysdeps/ieee754/flt-32/e_rem_pio2f.c
+++ b/sysdeps/ieee754/flt-32/e_rem_pio2f.c
@@ -145,11 +145,11 @@ int32_t __ieee754_rem_pio2f(float x, float *y)
 		    GET_FLOAT_WORD(high,y[0]);
 		    i = j-((high>>23)&0xff);
 		    if(i>25)  {	/* 3rd iteration need, 74 bits acc */
-		    	t  = r;	/* will cover all possible cases */
-		    	w  = fn*pio2_3;
-		    	r  = t-w;
-		    	w  = fn*pio2_3t-((t-r)-w);
-		    	y[0] = r-w;
+			t  = r;	/* will cover all possible cases */
+			w  = fn*pio2_3;
+			r  = t-w;
+			w  = fn*pio2_3t-((t-r)-w);
+			y[0] = r-w;
 		    }
 		}
 	    }