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:
Jason Molenda 2011-01-25 03:12:34 +00:00
parent 8fe0c8c6c5
commit f28ce687ac
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}