mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
JitArm64_RegCache: Const correctness
Forgot this when I added it in #13120.
This commit is contained in:
parent
7ce7da629e
commit
755c003265
1 changed files with 1 additions and 1 deletions
|
@ -345,7 +345,7 @@ public:
|
|||
// Gets the immediate that a register is set to. Only valid for guest GPRs.
|
||||
u32 GetImm(size_t preg) const { return GetGuestGPROpArg(preg).GetImm(); }
|
||||
|
||||
bool IsImm(size_t preg, u32 imm) { return IsImm(preg) && GetImm(preg) == imm; }
|
||||
bool IsImm(size_t preg, u32 imm) const { return IsImm(preg) && GetImm(preg) == imm; }
|
||||
|
||||
// Binds a guest GPR to a host register, optionally loading its value.
|
||||
//
|
||||
|
|
Loading…
Add table
Reference in a new issue