@@ -555,6 +555,7 @@ void GetContextPointers(unw_cursor_t *cursor, unw_context_t *unwContext, KNONVOL
555555 GetContextPointer (cursor, unwContext, UNW_ARM_R9, &contextPointers->R9 );
556556 GetContextPointer (cursor, unwContext, UNW_ARM_R10, &contextPointers->R10 );
557557 GetContextPointer (cursor, unwContext, UNW_ARM_R11, &contextPointers->R11 );
558+ GetContextPointer (cursor, unwContext, UNW_ARM_R14, &contextPointers->Lr );
558559 GetContextPointer (cursor, unwContext, UNW_ARM_D8, (SIZE_T **)&contextPointers->D8 );
559560 GetContextPointer (cursor, unwContext, UNW_ARM_D9, (SIZE_T **)&contextPointers->D9 );
560561 GetContextPointer (cursor, unwContext, UNW_ARM_D10, (SIZE_T **)&contextPointers->D10 );
@@ -575,6 +576,7 @@ void GetContextPointers(unw_cursor_t *cursor, unw_context_t *unwContext, KNONVOL
575576 GetContextPointer (cursor, unwContext, UNW_AARCH64_X27, (SIZE_T**)&contextPointers->X27 );
576577 GetContextPointer (cursor, unwContext, UNW_AARCH64_X28, (SIZE_T**)&contextPointers->X28 );
577578 GetContextPointer (cursor, unwContext, UNW_AARCH64_X29, (SIZE_T**)&contextPointers->Fp );
579+ GetContextPointer (cursor, unwContext, UNW_AARCH64_X30, (SIZE_T**)&contextPointers->Lr );
578580 GetContextPointer (cursor, unwContext, UNW_AARCH64_V8, (SIZE_T**)&contextPointers->D8 );
579581 GetContextPointer (cursor, unwContext, UNW_AARCH64_V9, (SIZE_T**)&contextPointers->D9 );
580582 GetContextPointer (cursor, unwContext, UNW_AARCH64_V10, (SIZE_T**)&contextPointers->D10 );
0 commit comments