diff --git a/compiler/riscv/aasmcpu.pas b/compiler/riscv/aasmcpu.pas index 5a3df6aa6b..19eccf950f 100644 --- a/compiler/riscv/aasmcpu.pas +++ b/compiler/riscv/aasmcpu.pas @@ -507,7 +507,8 @@ uses cutils, cclasses; result:=operand_read; // SB type - A_Bxx: + A_BEQZ,A_BNEZ,A_BLEZ,A_BGEZ,A_BLTZ,A_BGTZ,A_BGT,A_BLE, + A_BGTU,A_BLEU,A_Bxx: result:=operand_read; // S type diff --git a/compiler/riscv/cpubase.pas b/compiler/riscv/cpubase.pas index 67ff8cd34c..713acad758 100644 --- a/compiler/riscv/cpubase.pas +++ b/compiler/riscv/cpubase.pas @@ -552,6 +552,8 @@ implementation begin is_calljmp:=false; case o of + A_BEQZ,A_BNEZ,A_BLEZ,A_BGEZ,A_BLTZ,A_BGTZ,A_BGT,A_BLE, + A_BGTU,A_BLEU,A_J,A_JR, A_JAL,A_JALR,A_Bxx,A_CALL: is_calljmp:=true; else