mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
No 32-byte floating point format: fix error for DY
Output a more legible error message for floating-point with "DY".
This commit is contained in:
parent
0c648204e2
commit
3be5d85913
@ -325,7 +325,8 @@ int64_t assemble(int32_t segment, int64_t offset, int bits, uint32_t cp,
|
||||
OUT_RAWDATA, 1, NO_SEG, NO_SEG);
|
||||
}
|
||||
} else if (wsize > 8) {
|
||||
errfunc(ERR_NONFATAL, "integer supplied to a DT, DO or DY"
|
||||
errfunc(ERR_NONFATAL,
|
||||
"integer supplied to a DT, DO or DY"
|
||||
" instruction");
|
||||
} else
|
||||
out(offset, segment, &e->offset,
|
||||
|
5
parser.c
5
parser.c
@ -401,6 +401,11 @@ restart_parse:
|
||||
case I_DO:
|
||||
eop->stringlen = 16;
|
||||
break;
|
||||
case I_DY:
|
||||
error(ERR_NONFATAL, "floating-point constant"
|
||||
" encountered in DY instruction");
|
||||
eop->stringlen = 0;
|
||||
break;
|
||||
default:
|
||||
error(ERR_NONFATAL, "floating-point constant"
|
||||
" encountered in unknown instruction");
|
||||
|
Loading…
x
Reference in New Issue
Block a user