diff options
Diffstat (limited to 'arch/armv7/thumb2_disasm/disassembler.cpp')
| -rw-r--r-- | arch/armv7/thumb2_disasm/disassembler.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/arch/armv7/thumb2_disasm/disassembler.cpp b/arch/armv7/thumb2_disasm/disassembler.cpp index 8c7902b7..6910307f 100644 --- a/arch/armv7/thumb2_disasm/disassembler.cpp +++ b/arch/armv7/thumb2_disasm/disassembler.cpp @@ -317,15 +317,16 @@ std::string get_thumb_operation_name(struct decomp_result* result) contents += tlookup[tindex]; contents += slookup[sindex]; } - if (format->operationFlags & INSTR_FORMAT_FLAG_F16) { - contents += ".F16"; - } - if (format->operationFlags & INSTR_FORMAT_FLAG_F32) { - contents += ".F32"; - } - if (format->operationFlags & INSTR_FORMAT_FLAG_F64) { - contents += ".F64"; - } + // These are obviated by the type specifier being included in the instruction_format.operation field in spec.cpp + // if (format->operationFlags & INSTR_FORMAT_FLAG_F16) { + // contents += ".F16"; + // } + // if (format->operationFlags & INSTR_FORMAT_FLAG_F32) { + // contents += ".F32"; + // } + // if (format->operationFlags & INSTR_FORMAT_FLAG_F64) { + // contents += ".F64"; + // } if (format->operationFlags & INSTR_FORMAT_FLAG_WIDE) { contents += ".w"; |
