diff options
Diffstat (limited to 'lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVM.cpp')
-rw-r--r-- | lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVM.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVM.cpp b/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVM.cpp index 8544be7c9f8..e395cccfad8 100644 --- a/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVM.cpp +++ b/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVM.cpp @@ -437,7 +437,7 @@ InstructionLLVM::Dump } void -InstructionLLVM::CalculateMnemonic (ExecutionContextScope *exe_scope) +InstructionLLVM::CalculateMnemonicOperandsAndComment (ExecutionContextScope *exe_scope) { const int num_tokens = EDNumTokens(m_inst); if (num_tokens > 0) @@ -560,20 +560,6 @@ InstructionLLVM::CalculateMnemonic (ExecutionContextScope *exe_scope) } } -void -InstructionLLVM::CalculateOperands(ExecutionContextScope *exe_scope) -{ - // Do all of the work in CalculateMnemonic() - CalculateMnemonic (exe_scope); -} - -void -InstructionLLVM::CalculateComment(ExecutionContextScope *exe_scope) -{ - // Do all of the work in CalculateMnemonic() - CalculateMnemonic (exe_scope); -} - bool InstructionLLVM::DoesBranch() const { |