diff --git a/compiler/m68k/ag68kgas.pas b/compiler/m68k/ag68kgas.pas index 49c4e08ec6..b41819067a 100644 --- a/compiler/m68k/ag68kgas.pas +++ b/compiler/m68k/ag68kgas.pas @@ -50,7 +50,7 @@ interface const gas_opsize2str : array[topsize] of string[2] = - ('','.b','.w','.l','.s','.d','.x',''); + ('','.b','.w','.l','.s','.d','.x'); implementation diff --git a/compiler/m68k/cpubase.pas b/compiler/m68k/cpubase.pas index 54ad3ee953..73ead93397 100644 --- a/compiler/m68k/cpubase.pas +++ b/compiler/m68k/cpubase.pas @@ -156,7 +156,7 @@ unit cpubase; { S_FS = single type (32 bit) } { S_FD = double/64bit integer } { S_FX = Extended type } - topsize = (S_NO,S_B,S_W,S_L,S_FS,S_FD,S_FX,S_IQ); + topsize = (S_NO,S_B,S_W,S_L,S_FS,S_FD,S_FX); TOpSizes = set of topsize;