Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/gdtoa Use original indentation style in more places.
details: https://anonhg.NetBSD.org/src/rev/84ee26b09443
branches: trunk
changeset: 779300:84ee26b09443
user: alnsn <alnsn%NetBSD.org@localhost>
date: Wed May 16 17:48:59 2012 +0000
description:
Use original indentation style in more places.
diffstat:
lib/libc/gdtoa/dtoa.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (51 lines):
diff -r 6749b8b03408 -r 84ee26b09443 lib/libc/gdtoa/dtoa.c
--- a/lib/libc/gdtoa/dtoa.c Wed May 16 13:54:28 2012 +0000
+++ b/lib/libc/gdtoa/dtoa.c Wed May 16 17:48:59 2012 +0000
@@ -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 @@
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 @@
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 @@
mhi = multadd(mhi, 10, 0);
if (mhi == NULL)
return NULL;
- }
+ }
ilim = ilim1;
}
}
@@ -644,7 +644,7 @@
mhi = lshift(mhi, m2);
if (mhi == NULL)
return NULL;
- }
+ }
/* Compute mlo -- check for special case
* that d is a normalized power of 2.
Home |
Main Index |
Thread Index |
Old Index