diff options
author | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:05:55 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2002-04-30 21:05:55 +0000 |
commit | 09f6acbb75d7f58aa78691844620b85b6c44919b (patch) | |
tree | 24e2d6838a266ff026a5e84da16e9deb2baa155e /parser.c | |
parent | b1a0143a0db46de295e647975b08aa9b6a00fef9 (diff) | |
download | nasm-09f6acbb75d7f58aa78691844620b85b6c44919b.tar.gz nasm-09f6acbb75d7f58aa78691844620b85b6c44919b.tar.bz2 nasm-09f6acbb75d7f58aa78691844620b85b6c44919b.zip |
NASM 0.98.21
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; } } } |