mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-10 19:45:49 +00:00
Jit64: clean up casts in memory operands
This commit is contained in:
parent
25feb7d16c
commit
6e928d08a0
10 changed files with 60 additions and 61 deletions
|
@ -194,7 +194,6 @@ private:
|
|||
u16 indexReg;
|
||||
};
|
||||
|
||||
inline OpArg M(const void *ptr) {return OpArg((u64)ptr, (int)SCALE_RIP);}
|
||||
template <typename T>
|
||||
inline OpArg M(const T *ptr) {return OpArg((u64)(const void *)ptr, (int)SCALE_RIP);}
|
||||
inline OpArg R(X64Reg value) {return OpArg(0, SCALE_NONE, value);}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue