Module Name: src
Committed By: alnsn
Date: Wed May 16 17:48:59 UTC 2012
Modified Files:
src/lib/libc/gdtoa: dtoa.c
Log Message:
Use original indentation style in more places.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/lib/libc/gdtoa/dtoa.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/gdtoa/dtoa.c
diff -u src/lib/libc/gdtoa/dtoa.c:1.9 src/lib/libc/gdtoa/dtoa.c:1.10
--- src/lib/libc/gdtoa/dtoa.c:1.9 Tue May 15 18:13:21 2012
+++ src/lib/libc/gdtoa/dtoa.c Wed May 16 17:48:59 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: dtoa.c,v 1.9 2012/05/15 18:13:21 alnsn Exp $ */
+/* $NetBSD: dtoa.c,v 1.10 2012/05/16 17:48:59 alnsn Exp $ */
/****************************************************************
@@ -555,7 +555,7 @@ dtoa
S = pow5mult(S, s5);
if (S == NULL)
return NULL;
- }
+ }
/* Check for special case that d is a normalized power of 2. */
@@ -607,12 +607,12 @@ dtoa
b = lshift(b, b2);
if (b == NULL)
return NULL;
- }
+ }
if (s2 > 0) {
S = lshift(S, s2);
if (S == NULL)
return NULL;
- }
+ }
if (k_check) {
if (cmp(b,S) < 0) {
k--;
@@ -623,7 +623,7 @@ dtoa
mhi = multadd(mhi, 10, 0);
if (mhi == NULL)
return NULL;
- }
+ }
ilim = ilim1;
}
}
@@ -644,7 +644,7 @@ dtoa
mhi = lshift(mhi, m2);
if (mhi == NULL)
return NULL;
- }
+ }
/* Compute mlo -- check for special case
* that d is a normalized power of 2.