From: Robert Pengelly Date: Wed, 20 Nov 2024 01:54:32 +0000 (+0000) Subject: Bug fix X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=HEAD;p=sasm.git Bug fix --- diff --git a/intel.c b/intel.c index 62d4d5a..d128106 100644 --- a/intel.c +++ b/intel.c @@ -1983,12 +1983,12 @@ static int finalize_immediate (struct expr *expr, const char *imm_start) { } else if (expr->type == EXPR_TYPE_CONSTANT) { /* Size will be determined later. */ - instruction.types[instruction.operands] |= IMM16; + instruction.types[instruction.operands] |= IMM32; } else { /* It is an address and size will determined later. */ - instruction.types[instruction.operands] = IMM8 | IMM16; + instruction.types[instruction.operands] = IMM8 | IMM16 | IMM32; } @@ -3103,7 +3103,7 @@ static int match_template (void) { if (template->cpu_flags && (template->cpu_flags & cpu_arch_flags) == 0) { continue; } - + if (template->opcode_modifier & suffix_check) { continue; }