mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
For consistency, allow 0p.. prefix for packed BCD
Allow 0p... to be used as a prefix, for analogy with base conversion.
This commit is contained in:
parent
45f22924ea
commit
63ebf1650c
7
float.c
7
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user