mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Arm64Emitter: Make SystemHint enum an enum class
Avoids polluting the namespace and makes the members strongly typed.
This commit is contained in:
@ -354,14 +354,14 @@ enum PStateField
|
||||
FIELD_FPSR = 0x341,
|
||||
};
|
||||
|
||||
enum SystemHint
|
||||
enum class SystemHint
|
||||
{
|
||||
HINT_NOP = 0,
|
||||
HINT_YIELD,
|
||||
HINT_WFE,
|
||||
HINT_WFI,
|
||||
HINT_SEV,
|
||||
HINT_SEVL,
|
||||
NOP,
|
||||
YIELD,
|
||||
WFE,
|
||||
WFI,
|
||||
SEV,
|
||||
SEVL,
|
||||
};
|
||||
|
||||
enum BarrierType
|
||||
|
Reference in New Issue
Block a user