From e87f0e1df4fd6e17a8723b11296c12706ec57ea9 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Thu, 18 Oct 2012 20:10:29 +0000 Subject: [PATCH] m68k/ra68kmot.pas, tm68kmotreader.Assemble: the asmr_d_*_reading messages need an argument which specifies in which style the assembler code is read; this is most importantly used on i386; on m68k we currently don't have multiple styles, so simply disable these messages git-svn-id: trunk@22725 - --- compiler/m68k/ra68kmot.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/m68k/ra68kmot.pas b/compiler/m68k/ra68kmot.pas index d2258bcce6..a25d1927f0 100644 --- a/compiler/m68k/ra68kmot.pas +++ b/compiler/m68k/ra68kmot.pas @@ -1697,7 +1697,7 @@ const hl: tasmlabel; instr : TM68kInstruction; begin - Message(asmr_d_start_reading); + //Message(asmr_d_start_reading); firsttoken := TRUE; operandnum := 0; { sets up all opcode and register tables in uppercase } @@ -1806,7 +1806,7 @@ const LocalLabelList.Free; assemble:=curlist; - Message(asmr_d_finish_reading); + //Message(asmr_d_finish_reading); end;