Replace uint64_t with u64

This commit is contained in:
Nekotekina 2020-12-18 11:43:50 +03:00
parent 77352a2a86
commit 05099e2ae1
9 changed files with 151 additions and 153 deletions

View file

@ -833,7 +833,7 @@ typedef ucontext_t x64_context;
#define XMMREG(context, reg) (reinterpret_cast<v128*>(&(context)->uc_mcontext->__fs.__fpu_xmm0.__xmm_reg[reg]))
#define EFLAGS(context) ((context)->uc_mcontext->__ss.__rflags)
uint64_t* darwin_x64reg(x64_context *context, int reg)
u64* darwin_x64reg(x64_context *context, int reg)
{
auto *state = &context->uc_mcontext->__ss;
switch(reg)