Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10203 from merryhime/ctx_lr
MachineContext: Correct CTX_LR for Apple ARM64
  • Loading branch information
lioncash committed Nov 7, 2021
2 parents 58f8c6e + c385e7e commit c89226c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/MachineContext.h
Expand Up @@ -69,7 +69,7 @@ typedef x86_thread_state64_t SContext;
#elif _M_ARM_64
typedef arm_thread_state64_t SContext;
#define CTX_REG(x) __x[x]
#define CTX_LR __x[30]
#define CTX_LR __lr
#define CTX_SP __sp
#define CTX_PC __pc
#else
Expand Down

0 comments on commit c89226c

Please sign in to comment.