[Lldb-commits] [lldb] r124173 - /lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp

Jason Molenda jmolenda at apple.com
Mon Jan 24 19:12:34 PST 2011


Author: jmolenda
Date: Mon Jan 24 21:12:34 2011
New Revision: 124173

URL: http://llvm.org/viewvc/llvm-project?rev=124173&view=rev
Log:
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.


Modified:
    lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp

Modified: lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp?rev=124173&r1=124172&r2=124173&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp (original)
+++ lldb/trunk/source/Symbol/DWARFCallFrameInfo.cpp Mon Jan 24 21:12:34 2011
@@ -83,7 +83,7 @@
     {
         --idx;
     }
-    if (idx != m_fde_index.begin() && !idx->bounds.ContainsFileAddress (addr))
+    if (idx != m_fde_index.begin() && idx->bounds.GetBaseAddress().GetOffset() != addr.GetOffset())
     {
        --idx;
     }





More information about the lldb-commits mailing list