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/examples/python/symbolicate-crash.py b/lldb/examples/python/symbolicate-crash.py
index 9e614de..6afd9e1 100755
--- a/lldb/examples/python/symbolicate-crash.py
+++ b/lldb/examples/python/symbolicate-crash.py
@@ -236,11 +236,11 @@
         inst_pc = inst.GetAddress().GetLoadAddress(target);
         if pc == inst_pc:
             pc_index = inst_idx
-        opcode_name = inst.GetOpcodeName(target)
-        mnemonics =  inst.GetMnemonics(target)
-        comment =  inst.GetComment(target)
-        #data = inst.GetData(target)
-        lines.append ("%#16.16x: %8s %s" % (inst_pc, opcode_name, mnemonics))
+        mnemonic = inst.GetMnemonic (target)
+        operands =  inst.GetOperands (target)
+        comment =  inst.GetComment (target)
+        #data = inst.GetData (target)
+        lines.append ("%#16.16x: %8s %s" % (inst_pc, mnemonic, operands))
         if comment:
             line_len = len(lines[-1])
             if line_len < comment_column: