We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a23540f commit a4b409dCopy full SHA for a4b409d
lldb/source/Target/RegisterContextUnwind.cpp
@@ -2090,7 +2090,8 @@ bool RegisterContextUnwind::ReadFrameAddress(
2090
}
2091
case UnwindPlan::Row::FAValue::isConstant: {
2092
address = fa.GetConstant();
2093
- address = abi_sp->FixCodeAddress(address);
+ if (abi_sp)
2094
+ address = abi_sp->FixCodeAddress(address);
2095
UnwindLogMsg("CFA value set by constant is 0x%" PRIx64, address);
2096
return true;
2097
0 commit comments