summaryrefslogtreecommitdiff
path: root/src/wb.cc
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-05-11 12:31:58 -0400
committerbd <bdunahu@operationnull.com>2025-05-11 12:31:58 -0400
commit5326509d842c038a2d4f7dcf11fcadf960e437dd (patch)
tree7792e70baea159ed7b46296627fad807065ccdd6 /src/wb.cc
parent26c24ab3c581967015490d1a11ee098bb5ba338a (diff)
Remove I_VECT field types
Diffstat (limited to 'src/wb.cc')
-rw-r--r--src/wb.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wb.cc b/src/wb.cc
index bfdbc3a..1f396a5 100644
--- a/src/wb.cc
+++ b/src/wb.cc
@@ -62,11 +62,11 @@ void WB::write_handler()
this->store_register<std::array<signed int, V_R_LIMIT>>(
reg, this->copy_extra_vector_elements());
break;
- case I_VECT:
- this->store_register<std::array<signed int, V_R_LIMIT>>(
- reg, this->curr_instr->operands.i_vector.slot_three);
- // todo, use copy_extra_vector_elements
- break;
+ // case I_VECT:
+ // this->store_register<std::array<signed int, V_R_LIMIT>>(
+ // reg, this->curr_instr->operands.i_vector.slot_three);
+ // // todo, use copy_extra_vector_elements
+ // break;
}
}