0ad: acces to xmm regs was changed in beta3

see 9495126984 and 6f3a5c9ab0 and
This commit is contained in:
Jérôme Duval
2021-10-08 11:17:37 +02:00
committed by GitHub
parent 616b65a044
commit c59f9d6af1

View File

@@ -1021,7 +1021,7 @@ index 0000000..74d6f47
++# define R13_sig(p) ((p)->uc_mcontext.r13)
++# define R14_sig(p) ((p)->uc_mcontext.r14)
++# define R15_sig(p) ((p)->uc_mcontext.r15)
++# define XMM_sig(p,i) ((p)->uc_mcontext.fpu.xmm.xmm ## i)
++# define XMM_sig(p,i) ((p)->uc_mcontext.fpu.fp_fxsave.xmm[i])
++# endif
+ #else
+ # error "Don't know how to read/write to the thread state via the mcontext_t."