deps: Add ARM64 definitions in w32-pthreads

Update w32-pthreads/context.h to include definitions for _M_ARM and
_M_ARM64 in addition to existing ARM definitions.
This commit is contained in:
thirumalai-qcom
2024-07-23 16:15:38 +05:30
committed by Ryan Foster
parent 73725c27d3
commit 0daa31355d

View File

@@ -63,7 +63,7 @@
#define PTW32_PROGCTR(Context) ((Context).Rip)
#endif
#if defined(_ARM_) || defined(ARM)
#if defined(_ARM_) || defined(ARM) || defined(_M_ARM) || defined(_M_ARM64)
#define PTW32_PROGCTR(Context) ((Context).Pc)
#endif