From 5e90aa27d5435a07a44f5fbed44b2a5009a5a0ff Mon Sep 17 00:00:00 2001 From: nickysn Date: Wed, 29 Apr 2020 21:46:42 +0000 Subject: [PATCH] - z80: oops, forgot to delete some code from taicpu.Matches git-svn-id: trunk@45179 - --- compiler/z80/aasmcpu.pas | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/compiler/z80/aasmcpu.pas b/compiler/z80/aasmcpu.pas index bd8f008d68..c3294d317e 100644 --- a/compiler/z80/aasmcpu.pas +++ b/compiler/z80/aasmcpu.pas @@ -329,17 +329,6 @@ implementation if not OperandsMatch(oper[i]^,p^.optypes[i]) then exit; end; - - { Check the opcode and operands } - if (p^.opcode<>opcode) or (p^.ops<>ops) then - exit; - - for i:=0 to p^.ops-1 do - begin - if not OperandsMatch(oper[i]^,p^.optypes[i]) then - exit; - end; - result:=true; end;