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:
H. Peter Anvin 2008-05-20 14:49:32 -07:00
parent 0c648204e2
commit 3be5d85913
2 changed files with 7 additions and 1 deletions

View File

@ -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,

View File

@ -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");