[Lldb-commits] [lldb] [lldb] Add isConstant mode for FA locations (PR #110726)
Felipe de Azevedo Piovezan via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 2 07:10:38 PDT 2024
================
@@ -2088,6 +2088,13 @@ bool RegisterContextUnwind::ReadFrameAddress(
UnwindLogMsg("No suitable CFA found");
break;
}
+ case UnwindPlan::Row::FAValue::isConstant: {
+ address = fa.GetConstant();
+ if (abi_sp)
+ address = abi_sp->FixCodeAddress(address);
----------------
felipepiovezan wrote:
Sounds good! I will push an updated version calling the process method!
https://github.com/llvm/llvm-project/pull/110726
More information about the lldb-commits
mailing list