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
diff --git a/lldb/scripts/Python/interface/SBInstruction.i b/lldb/scripts/Python/interface/SBInstruction.i
index cf82ad9..7be6e91 100644
--- a/lldb/scripts/Python/interface/SBInstruction.i
+++ b/lldb/scripts/Python/interface/SBInstruction.i
@@ -31,10 +31,10 @@
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);