summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBThread.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-10-06 03:09:58 +0000
committerGreg Clayton <gclayton@apple.com>2010-10-06 03:09:58 +0000
commit1d273166064c5163a1ca2be9a8e65cb628fc3524 (patch)
tree1471372d3bfb657f1e6820d0bc5aa13e33d13684 /lldb/source/API/SBThread.cpp
parent32c4085ba2d259ff9a4365b1962362248de2c655 (diff)
downloadbcm5719-llvm-1d273166064c5163a1ca2be9a8e65cb628fc3524.tar.gz
bcm5719-llvm-1d273166064c5163a1ca2be9a8e65cb628fc3524.zip
Added the ability to get the disassembly instructions from the function and
symbol. llvm-svn: 115734
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r--lldb/source/API/SBThread.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp
index 216fa127816..7bf7dd29542 100644
--- a/lldb/source/API/SBThread.cpp
+++ b/lldb/source/API/SBThread.cpp
@@ -418,11 +418,7 @@ bool
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");
OpenPOWER on IntegriCloud