Bug fix
authorRobert Pengelly <robertapengelly@hotmail.com>
Sat, 8 Jun 2024 22:25:37 +0000 (23:25 +0100)
committerRobert Pengelly <robertapengelly@hotmail.com>
Sat, 8 Jun 2024 22:25:37 +0000 (23:25 +0100)
intel.c

diff --git a/intel.c b/intel.c
index c62edb732b4a310fa210b1460aec0552b3b873f2..a0192dca7001cbdf98fc9792d1e51dd65c03f0a3 100644 (file)
--- 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);
         }
     
     }