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.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@140591 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBInstruction.i b/scripts/Python/interface/SBInstruction.i
index cf82ad9..7be6e91 100644
--- a/scripts/Python/interface/SBInstruction.i
+++ b/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);