diff options
author | bd <bdunahu@operationnull.com> | 2025-05-10 18:52:04 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-10 18:52:04 -0400 |
commit | c5e989bbf1adf6cb0ea63f5d215db7c90518c607 (patch) | |
tree | 3dd8d5a2eef510f507161e9fef9ad64f85718c4f /src/wb.cc | |
parent | ebb2a3d33d4536bcace34e9ba95198067ae19522 (diff) |
Rename load/store vector to i_vector
Diffstat (limited to 'src/wb.cc')
-rw-r--r-- | src/wb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ void WB::write_handler() if(this->curr_instr->mnemonic != STOREV && this->curr_instr->mnemonic != LOADV) { this->store_register<std::array<signed int, V_R_LIMIT>>(reg, this->curr_instr->operands.vector.slot_one); } else { - this->store_register<std::array<signed int, V_R_LIMIT>>(reg, this->curr_instr->operands.load_store_vector.vector_register); + this->store_register<std::array<signed int, V_R_LIMIT>>(reg, this->curr_instr->operands.i_vector.vector_register); } } else{ this->store_register<signed int>(reg, this->curr_instr->operands.integer.slot_one); |