From 0785652b55ab72528d0514b2cf569be75fe641a0 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 24 Mar 2025 23:00:38 +0100 Subject: [PATCH] + RiscV: handle ror(i)(w) in the assembler optimizer --- compiler/riscv/aoptcpurv.pas | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/compiler/riscv/aoptcpurv.pas b/compiler/riscv/aoptcpurv.pas index e70eb4a0a6..62b5ffa8b2 100644 --- a/compiler/riscv/aoptcpurv.pas +++ b/compiler/riscv/aoptcpurv.pas @@ -917,11 +917,15 @@ implementation A_SRLW, A_SRAW, A_ROLW, + A_RORW, + A_RORIW, {$endif riscv64} A_SLL, A_SRL, A_SRA, A_ROL, + A_ROR, + A_RORI, A_NEG, A_NOT: result:=OptPass1OP(p);