From cb0f422eb1f04ba531b1acdc0212194eb1c565e6 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 8 Jul 2021 20:40:10 +0000 Subject: [PATCH] * patch by J. Gareth Moreton: x86: MovMovSar2MovCltd bug fix, resolves #39180 git-svn-id: trunk@49586 - --- compiler/x86/aoptx86.pas | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/x86/aoptx86.pas b/compiler/x86/aoptx86.pas index 01353c1d8d..93a4f7c8fb 100644 --- a/compiler/x86/aoptx86.pas +++ b/compiler/x86/aoptx86.pas @@ -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