[Lldb-commits] [lldb] [LLDB] Fix 64 bit support for CIE and FDE handling in DWARFCallFrameInfo (PR #158350)

Andrew Gontarek via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 12 12:14:44 PDT 2025


================
@@ -577,7 +598,8 @@ DWARFCallFrameInfo::ParseFDE(dw_offset_t dwarf_offset,
   }
 
   // FDE entries with zeroth cie_offset may occur for debug_frame.
-  assert(!(m_type == EH && 0 == cie_offset) && cie_offset != UINT32_MAX);
+  assert(!(m_type == EH && 0 == cie_offset) &&
----------------
agontarek wrote:

This should be fixed to not call assert.

https://github.com/llvm/llvm-project/pull/158350


More information about the lldb-commits mailing list