From 09f6acbb75d7f58aa78691844620b85b6c44919b Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 30 Apr 2002 21:05:55 +0000 Subject: NASM 0.98.21 --- parser.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'parser.c') diff --git a/parser.c b/parser.c index c3c00fc0..23d32926 100644 --- a/parser.c +++ b/parser.c @@ -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; } } } -- cgit v1.2.1