diff options
author | Sean Callanan <scallanan@apple.com> | 2012-08-07 01:44:58 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-08-07 01:44:58 +0000 |
commit | cd4ae1ab94e7cb17c5843faf6950fe17848c7058 (patch) | |
tree | 44db56e02e3714de85980cb257cd6566bbabaf23 /lldb/source/Core/Disassembler.cpp | |
parent | 79101b5cb01eda3c3b617314de23b78ea6abb702 (diff) | |
download | bcm5719-llvm-cd4ae1ab94e7cb17c5843faf6950fe17848c7058.tar.gz bcm5719-llvm-cd4ae1ab94e7cb17c5843faf6950fe17848c7058.zip |
Changed the Opcode::GetData() API so that it didn't
require an AddressClass, which is useless at this
point since it already knows the distinction between
32-bit Thumb opcodes and 32-bit ARM opcodes.
llvm-svn: 161382
Diffstat (limited to 'lldb/source/Core/Disassembler.cpp')
-rw-r--r-- | lldb/source/Core/Disassembler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Disassembler.cpp b/lldb/source/Core/Disassembler.cpp index 448ad29dfb0..96828f4a7db 100644 --- a/lldb/source/Core/Disassembler.cpp +++ b/lldb/source/Core/Disassembler.cpp @@ -893,7 +893,7 @@ Instruction::Emulate (const ArchSpec &arch, uint32_t Instruction::GetData (DataExtractor &data) { - return m_opcode.GetData(data, GetAddressClass ()); + return m_opcode.GetData(data); } InstructionList::InstructionList() : |