aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vdivu_vx.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vdivu_vx.h')
-rw-r--r--riscv/insns/vdivu_vx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/insns/vdivu_vx.h b/riscv/insns/vdivu_vx.h
index 7ffe1c6..ce3e964 100644
--- a/riscv/insns/vdivu_vx.h
+++ b/riscv/insns/vdivu_vx.h
@@ -1,7 +1,7 @@
// vdivu.vx vd, vs2, rs1
VI_VX_ULOOP
({
- if(rs1 == 0)
+ if (rs1 == 0)
vd = -1;
else
vd = vs2 / rs1;