diff options
author | Greg Clayton <gclayton@apple.com> | 2011-09-27 00:58:45 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-09-27 00:58:45 +0000 |
commit | fb0655ef59f52c81c8998e51477157e7794d7c05 (patch) | |
tree | c3cc61410a497f3d93b329d5856c4ae47992db04 /lldb/scripts/Python | |
parent | 581243919d9e2b06c65cb4c55834819dc75cb6d3 (diff) | |
download | bcm5719-llvm-fb0655ef59f52c81c8998e51477157e7794d7c05.tar.gz bcm5719-llvm-fb0655ef59f52c81c8998e51477157e7794d7c05.zip |
Fixed the public and internal disassembler API to be named correctly:
const char *
SBInstruction::GetMnemonic()
const char *
SBInstruction::GetOperands()
const char *
SBInstruction::GetComment()
Fixed the symbolicate example script and the internals.
llvm-svn: 140591
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBInstruction.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/interface/SBInstruction.i b/lldb/scripts/Python/interface/SBInstruction.i index cf82ad9e4d6..7be6e911ed0 100644 --- a/lldb/scripts/Python/interface/SBInstruction.i +++ b/lldb/scripts/Python/interface/SBInstruction.i @@ -31,10 +31,10 @@ public: GetAddress(); const char * - GetOpcodeName (lldb::SBTarget target); + GetMnemonic (lldb::SBTarget target); const char * - GetMnemonics (lldb::SBTarget target); + GetOperands (lldb::SBTarget target); const char * GetComment (lldb::SBTarget target); |