remove x64 instruction skip 32-bit address flag we don't need to save for anything

This commit is contained in:
rakslice 2020-12-01 19:55:45 -08:00
parent 497b5bc5a9
commit 85f8971d8d

View File

@ -1020,13 +1020,11 @@ static bool ix86_skip_instruction(SIGSEGV_REGISTER_TYPE * regs)
#if defined(__x86_64__) || defined(_M_X64) #if defined(__x86_64__) || defined(_M_X64)
// Address size override // Address size override
bool x86_64_address_32 = false;
if (*eip == 0x67) { if (*eip == 0x67) {
// 32-bit address
eip++; eip++;
len++; len++;
x86_64_address_32 = true;
} }
// FIXME do something with this
#endif #endif
// REX prefix // REX prefix