[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 19 12:50:15 PDT 2025
================
@@ -283,7 +306,7 @@ DWARFCallFrameInfo::ParseCIE(const dw_offset_t cie_offset) {
GetCFIData();
uint32_t length = m_cfi_data.GetU32(&offset);
dw_offset_t cie_id, end_offset;
- bool is_64bit = (length == UINT32_MAX);
+ bool is_64bit = (length == std::numeric_limits<uint32_t>::max());
----------------
agontarek wrote:
Done.
https://github.com/llvm/llvm-project/pull/158350
More information about the lldb-commits
mailing list