Merge pull request #2486 from Tilka/x86_32

Jit64: drop more x86_32 left-overs
This commit is contained in:
Ryan Houdek
2015-05-31 13:06:19 -04:00
2 changed files with 0 additions and 12 deletions

View File

@ -166,11 +166,7 @@ private:
void LoadAddrMaskToReg(int sbits, const void* ptr, u32 mask)
{
#ifdef _ARCH_64
m_code->MOV(64, R(RSCRATCH), ImmPtr(ptr));
#else
m_code->MOV(32, R(RSCRATCH), ImmPtr(ptr));
#endif
// If we do not need to mask, we can do the sign extend while loading
// from memory. If masking is required, we have to first zero extend,
// then mask, then sign extend if needed (1 instr vs. 2/3).