mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Merge pull request #2486 from Tilka/x86_32
Jit64: drop more x86_32 left-overs
This commit is contained in:
@ -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).
|
||||
|
Reference in New Issue
Block a user