diff --git a/src/coreclr/src/pal/src/include/pal/context.h b/src/coreclr/src/pal/src/include/pal/context.h index 794fe32310e05..92e2d6f89cf80 100644 --- a/src/coreclr/src/pal/src/include/pal/context.h +++ b/src/coreclr/src/pal/src/include/pal/context.h @@ -485,7 +485,7 @@ inline static DWORD64 CONTEXTGetFP(LPCONTEXT pContext) #elif defined(_ARM_) return pContext->R7; #elif defined(_ARM64_) - return pContext->X29; + return pContext->Fp; #else #error don't know how to get the frame pointer for this architecture #endif