m68k: removed the unused S_IQ opsize

This commit is contained in:
Karoly Balogh 2023-01-08 14:09:45 +01:00
parent 0641ea33d1
commit 69761839c0
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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;