summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/instrDTO.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/instrDTO.h b/inc/instrDTO.h
index 98247a3..12c72d9 100644
--- a/inc/instrDTO.h
+++ b/inc/instrDTO.h
@@ -33,7 +33,7 @@ struct V_TYPE {
std::array<signed int, V_R_LIMIT> slot_three;
};
-struct LOAD_STORE_V_TYPE {
+struct VI_TYPE {
signed int base_addr;
signed int immediate;
std::array<signed int, V_R_LIMIT> vector_register;
@@ -67,7 +67,7 @@ struct InstrDTO {
union {
struct U_INT_TYPE integer;
struct V_TYPE vector;
- struct LOAD_STORE_V_TYPE load_store_vector;
+ struct VI_TYPE i_vector;
} operands;
};