simplify/debloat radix point alignment code in floatscan
authorRich Felker <dalias@aerifal.cx>
Wed, 11 Apr 2012 18:20:45 +0000 (14:20 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 11 Apr 2012 18:20:45 +0000 (14:20 -0400)
commit5837a0bb6b5cf516f79527e837368af0b494d51a
treea2cefcd2db2ce4011fe7d248b58b0513cd4b7a9c
parent1bdd5c8b9868ebc092074e078604acb80546e43f
simplify/debloat radix point alignment code in floatscan

now that this is the first operation, it can rely on the circular
buffer contents not being wrapped when it begins. we limit the number
of digits read slightly in the initial parsing loops too so that this
code does not have to consider the case where it might cause the
circular buffer to wrap; this is perfectly fine because KMAX is chosen
as a power of two for circular-buffer purposes and is much larger than
it otherwise needs to be, anyway.

these changes should not affect performance at all.
src/internal/floatscan.c