mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07: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