[Lldb-commits] [lldb] [lldb] Tighten ABI assert in `StopInfoMachException::DeterminePtrauthFailure` (NFC) (PR #95015)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 11 17:51:50 PDT 2024


================
@@ -110,6 +108,9 @@ bool StopInfoMachException::DeterminePtrauthFailure(ExecutionContext &exe_ctx) {
     strm.Printf("Note: Possible pointer authentication failure detected.\n");
   };
 
+  ABISP abi_sp = process.GetABI();
+  assert(abi_sp && "Missing ABI info");
----------------
medismailben wrote:

Sounds good, FWIW, this is happening with `crashlog` command when loading an arm64 target on an intel machine. That could explain why we're seeing this behavior.

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


More information about the lldb-commits mailing list