Browse Source

Merge pull request #1079 from riscv-software-src/fix-vmvnfr

vmv<nf>r.v depends on vtype, and therefore should check vill
pull/1080/head
Andrew Waterman 4 years ago
committed by GitHub
parent
commit
2437a717c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      riscv/insns/vmvnfr_v.h

4
riscv/insns/vmvnfr_v.h

@ -1,5 +1,5 @@
// vmv1r.v vd, vs2
require_vector_novtype(true, true);
// vmv<nf>r.v vd, vs2
require_vector(true);
const reg_t baseAddr = RS1;
const reg_t vd = insn.rd();
const reg_t vs2 = insn.rs2();

Loading…
Cancel
Save