summaryrefslogtreecommitdiffstats
path: root/lldb/source/API
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-09-11 13:57:41 +0000
committerRaphael Isemann <teemperor@gmail.com>2019-09-11 13:57:41 +0000
commit1761f6fc42d45c85cf7f784e53c61c84111094b0 (patch)
tree2338cc6ca1ca5ee71e11f0135e1fefbe186aca90 /lldb/source/API
parent29ba5e0817abfec81b9780202fed38683f09e4ed (diff)
downloadbcm5719-llvm-1761f6fc42d45c85cf7f784e53c61c84111094b0.tar.gz
bcm5719-llvm-1761f6fc42d45c85cf7f784e53c61c84111094b0.zip
[lldb][NFC] Remove dead code in SBAddress::GetDescription
llvm-svn: 371618
Diffstat (limited to 'lldb/source/API')
-rw-r--r--lldb/source/API/SBAddress.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/source/API/SBAddress.cpp b/lldb/source/API/SBAddress.cpp
index 08095b59981..dcde25b7791 100644
--- a/lldb/source/API/SBAddress.cpp
+++ b/lldb/source/API/SBAddress.cpp
@@ -210,12 +210,6 @@ bool SBAddress::GetDescription(SBStream &description) {
if (m_opaque_up->IsValid()) {
m_opaque_up->Dump(&strm, nullptr, Address::DumpStyleResolvedDescription,
Address::DumpStyleModuleWithFileAddress, 4);
- StreamString sstrm;
- // m_opaque_up->Dump (&sstrm, NULL,
- // Address::DumpStyleResolvedDescription, Address::DumpStyleInvalid,
- // 4);
- // if (sstrm.GetData())
- // strm.Printf (" (%s)", sstrm.GetData());
} else
strm.PutCString("No value");
OpenPOWER on IntegriCloud