Re-commit logging for SBCompileUnit::GetNumLineEntries.

llvm-svn: 355473
This commit is contained in:
Jason Molenda 2019-03-06 02:32:45 +00:00
parent 3c20b34d24
commit b459f182e8
1 changed files with 7 additions and 1 deletions

View File

@ -57,10 +57,16 @@ SBFileSpec SBCompileUnit::GetFileSpec() const {
uint32_t SBCompileUnit::GetNumLineEntries() const {
LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBCompileUnit, GetNumLineEntries);
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API));
if (m_opaque_ptr) {
LineTable *line_table = m_opaque_ptr->GetLineTable();
if (line_table)
if (line_table) {
if (log)
log->Printf("SBCompileUnit(%p)::GetNumLineEntries() => %d",
static_cast<void *>(m_opaque_ptr),
(int)line_table->GetSize());
return line_table->GetSize();
}
}
return 0;
}