Revert "[PDB] Support PDB-backed expressions evaluation"
This reverts commit dec87759523b2f22fcff3325bc2cd543e4cda0e7. This commit caused the tests on Windows to run forever rather than complete. Reverting until the commit can be fixed to not stall. llvm-svn: 348009
This commit is contained in:
@@ -817,12 +817,12 @@ lldb_private::Address ObjectFilePECOFF::GetEntryPointAddress() {
|
||||
return m_entry_point_address;
|
||||
|
||||
SectionList *section_list = GetSectionList();
|
||||
addr_t file_addr = m_coff_header_opt.entry + m_coff_header_opt.image_base;
|
||||
addr_t offset = m_coff_header_opt.entry;
|
||||
|
||||
if (!section_list)
|
||||
m_entry_point_address.SetOffset(file_addr);
|
||||
m_entry_point_address.SetOffset(offset);
|
||||
else
|
||||
m_entry_point_address.ResolveAddressUsingFileSections(file_addr, section_list);
|
||||
m_entry_point_address.ResolveAddressUsingFileSections(offset, section_list);
|
||||
return m_entry_point_address;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user