forked from OSchip/llvm-project
Revert one unintended change checked in to DWARFCallFrameInfo.cpp
with my last commit. The change should be correct but it's not fixing anything important and right now unneeded changes are not a good idea. llvm-svn: 124173
This commit is contained in:
parent
8fe0c8c6c5
commit
f28ce687ac
|
@ -83,7 +83,7 @@ DWARFCallFrameInfo::GetFDEEntryByAddress (Address addr, FDEEntry& fde_entry)
|
|||
{
|
||||
--idx;
|
||||
}
|
||||
if (idx != m_fde_index.begin() && !idx->bounds.ContainsFileAddress (addr))
|
||||
if (idx != m_fde_index.begin() && idx->bounds.GetBaseAddress().GetOffset() != addr.GetOffset())
|
||||
{
|
||||
--idx;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue