aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Min Chao <chihmin.chao@sifive.com>2020-05-18 00:39:33 -0700
committerChih-Min Chao <chihmin.chao@sifive.com>2020-05-18 18:10:56 -0700
commit5978b14f2dee400cf097d83cad9d96ad0a294ebf (patch)
tree942d14327780bfca58189e2790a787018ba8bc6c
parent58232218158365f05dfb11ba3f6c8d80f0a7f30d (diff)
downloadspike-5978b14f2dee400cf097d83cad9d96ad0a294ebf.zip
spike-5978b14f2dee400cf097d83cad9d96ad0a294ebf.tar.gz
spike-5978b14f2dee400cf097d83cad9d96ad0a294ebf.tar.bz2
rvv: disasm: fix unorder index store
Signed-off-by: Chih-Min Chao <chihmin.chao@sifive.com>
-rw-r--r--spike_main/disasm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/spike_main/disasm.cc b/spike_main/disasm.cc
index dce9986..4ce81ca 100644
--- a/spike_main/disasm.cc
+++ b/spike_main/disasm.cc
@@ -760,7 +760,7 @@ disassembler_t::disassembler_t(int xlen)
DISASM_VMEM_INSN(vse, v_st_unit, );
DISASM_VMEM_INSN(vsse, v_st_stride, );
DISASM_VMEM_INSN(vsxei, v_st_index, );
- DISASM_VMEM_INSN(vsuxei, v_st_unit, );
+ DISASM_VMEM_INSN(vsuxei, v_st_index, );
#undef DISASM_VMEM_INSN