aboutsummaryrefslogtreecommitdiff
path: root/riscv/insns/vlxe_v.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscv/insns/vlxe_v.h')
-rw-r--r--riscv/insns/vlxe_v.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/riscv/insns/vlxe_v.h b/riscv/insns/vlxe_v.h
deleted file mode 100644
index 889a19e..0000000
--- a/riscv/insns/vlxe_v.h
+++ /dev/null
@@ -1,12 +0,0 @@
-// vlxe.v and vlxseg[2-8]e.v
-reg_t sew = P.VU.vsew;
-VI_DUPLICATE_VREG(insn.rs2(), P.VU.vlmax);
-if (sew == e8) {
- VI_LD_INDEX(index[i], fn, int8, 1, true);
-} else if (sew == e16) {
- VI_LD_INDEX(index[i], fn, int16, 2, true);
-} else if (sew == e32) {
- VI_LD_INDEX(index[i], fn, int32, 4, true);
-} else if (sew == e64) {
- VI_LD_INDEX(index[i], fn, int64, 8, true);
-}