diff --git a/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc b/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc index 57863228d8..cf00466935 100644 --- a/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +++ b/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc @@ -194,7 +194,7 @@ void* GetProgramCounter(void* const vuc) { #elif defined(__e2k__) return reinterpret_cast(context->uc_mcontext.cr0_hi); #elif defined(__loongarch__) - return reinterpret_cast(context->uc_mcontext.__pc); + return reinterpret_cast(context->uc_mcontext.sc_pc); #else #error "Undefined Architecture." #endif