@@ -555,6 +555,7 @@ void GetContextPointers(unw_cursor_t *cursor, unw_context_t *unwContext, KNONVOL
555
555
GetContextPointer (cursor, unwContext, UNW_ARM_R9, &contextPointers->R9 );
556
556
GetContextPointer (cursor, unwContext, UNW_ARM_R10, &contextPointers->R10 );
557
557
GetContextPointer (cursor, unwContext, UNW_ARM_R11, &contextPointers->R11 );
558
+ GetContextPointer (cursor, unwContext, UNW_ARM_R14, &contextPointers->Lr );
558
559
GetContextPointer (cursor, unwContext, UNW_ARM_D8, (SIZE_T **)&contextPointers->D8 );
559
560
GetContextPointer (cursor, unwContext, UNW_ARM_D9, (SIZE_T **)&contextPointers->D9 );
560
561
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
575
576
GetContextPointer (cursor, unwContext, UNW_AARCH64_X27, (SIZE_T**)&contextPointers->X27 );
576
577
GetContextPointer (cursor, unwContext, UNW_AARCH64_X28, (SIZE_T**)&contextPointers->X28 );
577
578
GetContextPointer (cursor, unwContext, UNW_AARCH64_X29, (SIZE_T**)&contextPointers->Fp );
579
+ GetContextPointer (cursor, unwContext, UNW_AARCH64_X30, (SIZE_T**)&contextPointers->Lr );
578
580
GetContextPointer (cursor, unwContext, UNW_AARCH64_V8, (SIZE_T**)&contextPointers->D8 );
579
581
GetContextPointer (cursor, unwContext, UNW_AARCH64_V9, (SIZE_T**)&contextPointers->D9 );
580
582
GetContextPointer (cursor, unwContext, UNW_AARCH64_V10, (SIZE_T**)&contextPointers->D10 );
0 commit comments