aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vrem_vv.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vrem_vv.h')
-rw-r--r--riscv/insns/vrem_vv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/insns/vrem_vv.h b/riscv/insns/vrem_vv.h
index da477f0..260716a 100644
--- a/riscv/insns/vrem_vv.h
+++ b/riscv/insns/vrem_vv.h
@@ -3,7 +3,7 @@ VI_VV_LOOP
({
if (vs1 == 0)
vd = vs2;
- else if(vs2 == -(1 << (sew - 1)) && vs1 == -1)
+ else if(vs2 == -(((intmax_t)1) << (sew - 1)) && vs1 == -1)
vd = 0;
else {
vd = vs2 % vs1;