From 63ebf1650c65bfb2e2dcda220fa411322d4d71bb Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 3 Jul 2008 20:16:07 -0700 Subject: [PATCH] For consistency, allow 0p.. prefix for packed BCD Allow 0p... to be used as a prefix, for analogy with base conversion. --- float.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/float.c b/float.c index 5e733724..f51654a6 100644 --- a/float.c +++ b/float.c @@ -638,14 +638,13 @@ enum floats { FL_SNAN }; -static int to_packed_bcd(const char *str, const char *strend, +static int to_packed_bcd(const char *str, const char *p, int s, uint8_t *result, const struct ieee_format *fmt) { int n = 0; char c; int tv = -1; - const char *p = strend-2; if (fmt != &ieee_80) { error(ERR_NONFATAL|ERR_PASS1, @@ -715,7 +714,7 @@ static int to_float(const char *str, int s, uint8_t *result, strend = strchr(str, '\0'); if (strend[-1] == 'P' || strend[-1] == 'p') - return to_packed_bcd(str, strend, s, result, fmt); + return to_packed_bcd(str, strend-2, s, result, fmt); if (str[0] == '_') { /* Special tokens */ @@ -760,6 +759,8 @@ static int to_float(const char *str, int s, uint8_t *result, case 't': case 'T': ok = ieee_flconvert(str+2, mant, &exponent); break; + case 'p': case 'P': + return to_packed_bcd(str+2, strend-1, s, result, fmt); default: /* Leading zero was just a zero? */ ok = ieee_flconvert(str, mant, &exponent);