mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 03:51:38 +02:00
JitArm64_RegCache: Const correctness
Forgot this when I added it in #13120.
This commit is contained in:
parent
7ce7da629e
commit
755c003265
@ -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…
x
Reference in New Issue
Block a user