From 3bf07cb7caf51ab7e6558cc0b5a003a042beee90 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sat, 8 Jun 2024 23:25:37 +0100 Subject: [PATCH] Bug fix --- intel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intel.c b/intel.c index c62edb7..a0192dc 100644 --- a/intel.c +++ b/intel.c @@ -3018,7 +3018,7 @@ static int check_word_reg (void) { } if ((instruction.types[op] & REG32) && (instruction.template.operand_types[op] & (REG16 | ACC))) { - report_at (get_filename (), get_line_number (), REPORT_ERROR, "using '%%%s' instead of '%%%s' due to '%c' suffix", (instruction.regs[op]-8)->name, instruction.regs[op]->name, instruction.suffix); + report_at (get_filename (), get_line_number (), REPORT_WARNING, "using '%%%s' instead of '%%%s' due to '%c' suffix", (instruction.regs[op]-8)->name, instruction.regs[op]->name, instruction.suffix); } } -- 2.34.1