Skip to content

Commit

Permalink
[RISC-V] Add missed instructions (#99948)
Browse files Browse the repository at this point in the history
In genInstrWithConstant, loadType and zero-extends are missed.
- lbu, lhu and lwu
  • Loading branch information
clamp03 committed Mar 20, 2024
1 parent 90a0fc1 commit 589beb0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/coreclr/jit/codegenriscv64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ bool CodeGen::genInstrWithConstant(instruction ins,
case INS_flw:
case INS_ld:
case INS_fld:
case INS_lbu:
case INS_lhu:
case INS_lwu:
break;

default:
Expand Down

0 comments on commit 589beb0

Please sign in to comment.