about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-128ibm/s_scalblnl.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/ldbl-128ibm/s_scalblnl.c
parent25506f09dda0d3d579d98971b3b12dd3e9e2fe8f (diff)
downloadglibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.gz
glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.tar.xz
glibc-350635a59a000fa4561d0d8bbe6814b4b9df530c.zip
Fix leading whitespaces.
Diffstat (limited to 'sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c')
-rw-r--r--sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c b/sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c
index e84561701f..d752568885 100644
--- a/sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c
+++ b/sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c
@@ -61,14 +61,14 @@ long double __scalblnl (long double x, long int n)
 	if (k > 0) {				/* normal result */
 	    hx = (hx&0x800fffffffffffffULL)|(k<<52);
 	    if ((lx & 0x7fffffffffffffffULL) == 0) { /* low part +-0 */
-	    	SET_LDOUBLE_WORDS64(x,hx,lx);
-	    	return x;
+		SET_LDOUBLE_WORDS64(x,hx,lx);
+		return x;
 	    }
 	    if (l == 0) { /* low part subnormal */
-	    	u.i = lx;
-	    	u.d *= two54;
-	    	lx = u.i;
-	    	l = ((lx>>52)&0x7ff) - 54;
+		u.i = lx;
+		u.d *= two54;
+		lx = u.i;
+		l = ((lx>>52)&0x7ff) - 54;
 	    }
 	    l = l + n;
 	    if (l > 0)
@@ -76,10 +76,10 @@ long double __scalblnl (long double x, long int n)
 	    else if (l <= -54)
 		lx = (lx&0x8000000000000000ULL);
 	    else {
-	    	l += 54;
-	    	u.i = (lx&0x800fffffffffffffULL)|(l<<52);
-	    	u.d *= twom54;
-	    	lx = u.i;
+		l += 54;
+		u.i = (lx&0x800fffffffffffffULL)|(l<<52);
+		u.d *= twom54;
+		lx = u.i;
 	    }
 	    SET_LDOUBLE_WORDS64(x,hx,lx);
 	    return x;