Added the ability to get the disassembly instructions from the function and
symbol.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115734 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/API/SBThread.cpp b/source/API/SBThread.cpp
index 216fa12..7bf7dd2 100644
--- a/source/API/SBThread.cpp
+++ b/source/API/SBThread.cpp
@@ -418,11 +418,7 @@
 SBThread::GetDescription (SBStream &description)
 {
     if (m_opaque_sp)
-    {
-        m_opaque_sp->DumpUsingSettingsFormat (description.ref(), LLDB_INVALID_INDEX32);
-        description.Printf (" %d frames, (instance name: %s)", GetNumFrames(), 
-                            m_opaque_sp->GetInstanceName().AsCString());
-    }
+        m_opaque_sp->DumpUsingSettingsFormat (description.ref(), 0);
     else
         description.Printf ("No value");