diff options
author | bd <bdunahu@operationnull.com> | 2025-05-08 19:44:23 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-08 19:44:23 -0400 |
commit | f4a5db14436ddbb2820c0abefcb34e5482105a12 (patch) | |
tree | 2b716eba64b247f03e2454f1d62d15643f203a1f /src/id.cc | |
parent | c7132dbc9c38ff766053bd9a0b72c68b23cd08d2 (diff) |
Move is_logical_type and is_vector_type to instr.h
Diffstat (limited to 'src/id.cc')
-rw-r--r-- | src/id.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ void ID::decode_R_type(signed int &s1) s2 = GET_MID_BITS(s1, s0b, s1b); s1 = GET_LS_BITS(s1, s0b); - if (this->is_vector_type(this->curr_instr->mnemonic)) { + if (instr::is_vector_type(this->curr_instr->mnemonic)) { r1 = this->read_vec_guard( s1, this->curr_instr->operands.vector.slot_one); r2 = this->read_vec_guard( |