1diff -Naur abseil-cpp-20210324.2.org/absl/debugging/internal/examine_stack.cc abseil-cpp-20210324.2.sw/absl/debugging/internal/examine_stack.cc 2--- abseil-cpp-20210324.2.org/absl/debugging/internal/examine_stack.cc 2022-03-10 01:13:54.492357080 +0000 3+++ abseil-cpp-20210324.2.sw/absl/debugging/internal/examine_stack.cc 2022-03-10 01:15:26.202357080 +0000 4@@ -46,7 +46,7 @@ 5 ucontext_t* context = reinterpret_cast<ucontext_t*>(vuc); 6 #if defined(__aarch64__) 7 return reinterpret_cast<void*>(context->uc_mcontext.pc); 8-#elif defined(__alpha__) 9+#elif defined(__alpha__) || defined(__sw_64__) 10 return reinterpret_cast<void*>(context->uc_mcontext.sc_pc); 11 #elif defined(__arm__) 12 return reinterpret_cast<void*>(context->uc_mcontext.arm_pc); 13