mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Avoid use of "register" as optimization hint.
This commit is contained in:
@@ -1175,10 +1175,9 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
|
||||
really integer digits or belong to the fractional part; i.e. we normalize
|
||||
123e-2 to 1.23. */
|
||||
{
|
||||
register intmax_t incr = (exponent < 0
|
||||
? MAX (-(intmax_t) int_no, exponent)
|
||||
: MIN ((intmax_t) dig_no - (intmax_t) int_no,
|
||||
exponent));
|
||||
intmax_t incr = (exponent < 0
|
||||
? MAX (-(intmax_t) int_no, exponent)
|
||||
: MIN ((intmax_t) dig_no - (intmax_t) int_no, exponent));
|
||||
int_no += incr;
|
||||
exponent -= incr;
|
||||
}
|
||||
@@ -1499,7 +1498,7 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
|
||||
#define got_limb \
|
||||
if (bits == 0) \
|
||||
{ \
|
||||
register int cnt; \
|
||||
int cnt; \
|
||||
if (quot == 0) \
|
||||
cnt = BITS_PER_MP_LIMB; \
|
||||
else \
|
||||
@@ -1651,7 +1650,7 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
|
||||
if (numsize < densize)
|
||||
{
|
||||
mp_size_t empty = densize - numsize;
|
||||
register int i;
|
||||
int i;
|
||||
|
||||
if (bits <= 0)
|
||||
exponent -= empty * BITS_PER_MP_LIMB;
|
||||
@@ -1679,7 +1678,7 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
|
||||
used = MANT_DIG - bits;
|
||||
if (used >= BITS_PER_MP_LIMB)
|
||||
{
|
||||
register int i;
|
||||
int i;
|
||||
(void) __mpn_lshift (&retval[used
|
||||
/ BITS_PER_MP_LIMB],
|
||||
retval,
|
||||
|
||||
Reference in New Issue
Block a user