mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 11:50:28 +02:00
* workaround for broken in operator
git-svn-id: trunk@22329 -
This commit is contained in:
parent
3b980cae63
commit
03bf93488b
@ -103,7 +103,7 @@ Implementation
|
||||
begin
|
||||
result :=
|
||||
(instr.typ = ait_instruction) and
|
||||
((op = []) or (taicpu(instr).opcode in op)) and
|
||||
((op = []) or ((ord(taicpu(instr).opcode)<256) and (taicpu(instr).opcode in op))) and
|
||||
((cond = []) or (taicpu(instr).condition in cond)) and
|
||||
((postfix = []) or (taicpu(instr).oppostfix in postfix));
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user