aboutsummaryrefslogtreecommitdiff
path: root/riscv
diff options
context:
space:
mode:
Diffstat (limited to 'riscv')
-rw-r--r--riscv/insns/remu.h2
-rw-r--r--riscv/insns/remuw.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/riscv/insns/remu.h b/riscv/insns/remu.h
index ca66318..1057789 100644
--- a/riscv/insns/remu.h
+++ b/riscv/insns/remu.h
@@ -1,6 +1,6 @@
reg_t lhs = zext_xprlen(RS1);
reg_t rhs = zext_xprlen(RS2);
if(rhs == 0)
- RD = lhs;
+ RD = sext_xprlen(RS1);
else
RD = sext_xprlen(lhs % rhs);
diff --git a/riscv/insns/remuw.h b/riscv/insns/remuw.h
index aac13fb..1ef810c 100644
--- a/riscv/insns/remuw.h
+++ b/riscv/insns/remuw.h
@@ -2,6 +2,6 @@ require_xpr64;
reg_t lhs = zext32(RS1);
reg_t rhs = zext32(RS2);
if(rhs == 0)
- RD = lhs;
+ RD = sext32(lhs);
else
RD = sext32(lhs % rhs);