[libcxx-commits] [compiler-rt] [libcxx] [libcxxabi] [libunwind] [runtimes][PAC] Harden unwinding when possible (PR #143230)

Oliver Hunt via libcxx-commits libcxx-commits at lists.llvm.org
Tue Oct 7 15:37:10 PDT 2025


================
@@ -597,6 +606,18 @@ _LIBUNWIND_EXPORT uintptr_t _Unwind_GetIP(struct _Unwind_Context *context) {
   unw_cursor_t *cursor = (unw_cursor_t *)context;
   unw_word_t result;
   __unw_get_reg(cursor, UNW_REG_IP, &result);
+
+#if defined(__ARM64E__)
----------------
ojhunt wrote:

Righto, I thought this was one of the arm64e specific behaviors

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


More information about the libcxx-commits mailing list