From 1802a8c4936be2572af60b0b9d58d19c61ab03c2 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 9 Feb 2025 15:23:24 +0100 Subject: [PATCH] + apply OptPass1Data to variable shifting/rotating operations as well --- compiler/aarch64/aoptcpu.pas | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/aarch64/aoptcpu.pas b/compiler/aarch64/aoptcpu.pas index 9a3d2fb3f6..8f28036505 100644 --- a/compiler/aarch64/aoptcpu.pas +++ b/compiler/aarch64/aoptcpu.pas @@ -1520,6 +1520,10 @@ Implementation Result:=OptPass1Shift(p); A_AND: Result:=OptPass1And(p); + A_LSRV, + A_RORV, + A_ASRV, + A_LSLV, A_UDIV, A_SDIV, A_NEG,