0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-11-08 23:27:15 -05:00

NASM 0.98.21

This commit is contained in:
H. Peter Anvin
2002-04-30 21:05:55 +00:00
parent b1a0143a0d
commit 09f6acbb75
4 changed files with 14 additions and 24 deletions

View File

@@ -686,11 +686,10 @@ insn *parse_line (int pass, char *buffer, insn *result,
if (is_simple(value)) {
if (reloc_value(value)==1)
result->oprs[operand].type |= UNITY;
if (optimizing>0) {
if (optimizing>=0) {
if (reloc_value(value) >= -128 &&
reloc_value(value) <= 127)
result->oprs[operand].type |= SBYTE;
else result->oprs[operand].type |= SBIG;
}
}
}