mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Arm64Gen: Convert ARM64Reg to enum class
Most changes are just adding ARM64Reg:: in front of the constants.
This commit is contained in:
@ -26,7 +26,7 @@ public:
|
||||
ResetCodePtr();
|
||||
|
||||
const u8* fn = GetCodePtr();
|
||||
MOVI2R(W0, value);
|
||||
MOVI2R(ARM64Reg::W0, value);
|
||||
RET();
|
||||
|
||||
FlushIcacheSection(const_cast<u8*>(fn), const_cast<u8*>(GetCodePtr()));
|
||||
@ -40,7 +40,7 @@ public:
|
||||
ResetCodePtr();
|
||||
|
||||
const u8* fn = GetCodePtr();
|
||||
MOVI2R(X0, value);
|
||||
MOVI2R(ARM64Reg::X0, value);
|
||||
RET();
|
||||
|
||||
FlushIcacheSection(const_cast<u8*>(fn), const_cast<u8*>(GetCodePtr()));
|
||||
|
Reference in New Issue
Block a user