From c4fc5fc916c4eca14831a70d75dda09df96778e8 Mon Sep 17 00:00:00 2001 From: florian Date: Tue, 23 Jan 2024 22:11:59 +0100 Subject: [PATCH] * disable OptPass2Test and OptPass2CMP for now as it seems to result in buggy code --- compiler/i386/aoptcpu.pas | 2 ++ compiler/x86_64/aoptcpu.pas | 2 ++ 2 files changed, 4 insertions(+) diff --git a/compiler/i386/aoptcpu.pas b/compiler/i386/aoptcpu.pas index 31fb6ae06c..b3e00cd7f5 100644 --- a/compiler/i386/aoptcpu.pas +++ b/compiler/i386/aoptcpu.pas @@ -291,10 +291,12 @@ unit aoptcpu; case taicpu(p).opcode Of A_ADD: Result:=OptPass2ADD(p); +{ disable for now as the it seems to cause buggy code A_CMP: Result:=OptPass2CMP(p); A_TEST: Result:=OptPass2TEST(p); +} A_Jcc: Result:=OptPass2Jcc(p); A_Lea: diff --git a/compiler/x86_64/aoptcpu.pas b/compiler/x86_64/aoptcpu.pas index 430f2610e9..7e56e3a255 100644 --- a/compiler/x86_64/aoptcpu.pas +++ b/compiler/x86_64/aoptcpu.pas @@ -228,10 +228,12 @@ uses Result:=OptPass2ADD(p); A_SETcc: result:=OptPass2SETcc(p); +{ disable for now as the it seems to cause buggy code A_CMP: Result:=OptPass2CMP(p); A_TEST: Result:=OptPass2TEST(p); +} else ; end;