[Lldb-commits] [lldb] 37400dd - [LLDB][NFC] Remove dead code from Section.cpp
Shafik Yaghmour via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 15 18:11:42 PDT 2022
Author: Shafik Yaghmour
Date: 2022-03-15T18:11:30-07:00
New Revision: 37400dd3e817ea43ed9c32d545211dd93b5e7c59
URL: https://github.com/llvm/llvm-project/commit/37400dd3e817ea43ed9c32d545211dd93b5e7c59
DIFF: https://github.com/llvm/llvm-project/commit/37400dd3e817ea43ed9c32d545211dd93b5e7c59.diff
LOG: [LLDB][NFC] Remove dead code from Section.cpp
Removing comment out code, looks like debugging code left over from a while ago.
Added:
Modified:
lldb/source/Core/Section.cpp
Removed:
################################################################################
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp
index cb9d41f19b507..acad3a2b8cf3d 100644
--- a/lldb/source/Core/Section.cpp
+++ b/lldb/source/Core/Section.cpp
@@ -164,12 +164,6 @@ Section::Section(const ModuleSP &module_sp, ObjectFile *obj_file,
m_log2align(log2align), m_children(), m_fake(false), m_encrypted(false),
m_thread_specific(false), m_readable(false), m_writable(false),
m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) {
- // printf ("Section::Section(%p): module=%p, sect_id = 0x%16.16" PRIx64 ",
- // addr=[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), file [0x%16.16" PRIx64 "
- // - 0x%16.16" PRIx64 "), flags = 0x%8.8x, name = %s\n",
- // this, module_sp.get(), sect_id, file_addr, file_addr +
- // byte_size, file_offset, file_offset + file_size, flags,
- // name.GetCString());
}
Section::Section(const lldb::SectionSP &parent_section_sp,
@@ -186,19 +180,11 @@ Section::Section(const lldb::SectionSP &parent_section_sp,
m_log2align(log2align), m_children(), m_fake(false), m_encrypted(false),
m_thread_specific(false), m_readable(false), m_writable(false),
m_executable(false), m_relocated(false), m_target_byte_size(target_byte_size) {
- // printf ("Section::Section(%p): module=%p, sect_id = 0x%16.16" PRIx64 ",
- // addr=[0x%16.16" PRIx64 " - 0x%16.16" PRIx64 "), file [0x%16.16" PRIx64 "
- // - 0x%16.16" PRIx64 "), flags = 0x%8.8x, name = %s.%s\n",
- // this, module_sp.get(), sect_id, file_addr, file_addr +
- // byte_size, file_offset, file_offset + file_size, flags,
- // parent_section_sp->GetName().GetCString(), name.GetCString());
if (parent_section_sp)
m_parent_wp = parent_section_sp;
}
-Section::~Section() {
- // printf ("Section::~Section(%p)\n", this);
-}
+Section::~Section() {}
addr_t Section::GetFileAddress() const {
SectionSP parent_sp(GetParent());
More information about the lldb-commits
mailing list