aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vdivu_vv.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vdivu_vv.h')
-rw-r--r--riscv/insns/vdivu_vv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscv/insns/vdivu_vv.h b/riscv/insns/vdivu_vv.h
index ef6e777..89aeed6 100644
--- a/riscv/insns/vdivu_vv.h
+++ b/riscv/insns/vdivu_vv.h
@@ -1,7 +1,7 @@
// vdivu.vv vd, vs2, vs1
VI_VV_ULOOP
({
- if(vs1 == 0)
+ if (vs1 == 0)
vd = -1;
else
vd = vs2 / vs1;