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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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(); |
|
|
|
|