* patch by J. Gareth Moreton: x86: MovMovSar2MovCltd bug fix, resolves #39180

git-svn-id: trunk@49586 -
This commit is contained in:
florian 2021-07-08 20:40:10 +00:00
parent 76765c64a0
commit cb0f422eb1

View File

@ -5840,9 +5840,9 @@ unit aoptx86;
checks first that are likely to be False. [Kit] }
begin
if MatchOperand(taicpu(p).oper[1]^, NR_EDX) and
(
if (
(
MatchOperand(taicpu(p).oper[1]^, NR_EDX) and
(taicpu(hp1).oper[1]^.reg = NR_EAX) and
(
MatchOperand(taicpu(hp1).oper[0]^, taicpu(p).oper[0]^) or
@ -5850,6 +5850,7 @@ unit aoptx86;
)
) or
(
MatchOperand(taicpu(p).oper[1]^, NR_EAX) and
(taicpu(hp1).oper[1]^.reg = NR_EDX) and
(
MatchOperand(taicpu(hp1).oper[0]^, taicpu(p).oper[0]^) or