diff --git a/src/decode_v.c b/src/decode_v.c index 3cfec7fd..72852070 100644 --- a/src/decode_v.c +++ b/src/decode_v.c @@ -1416,10 +1416,8 @@ static inline bool op_100001(rv_insn_t *ir, const uint32_t insn) decode_vvtype(ir, insn); ir->opcode = rv_insn_vsadd_vv; break; - case 1: - decode_vvtype(ir, insn); - ir->opcode = rv_insn_vfrdiv_vf; - break; + case 1: /* reserved per V 1.0 spec */ + return false; case 2: decode_vvtype(ir, insn); ir->opcode = rv_insn_vdiv_vv;