mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Arm64Emitter: Convert IndexType to enum class
This commit is contained in:
@ -285,12 +285,12 @@ enum ShiftType
|
||||
ST_ROR = 3,
|
||||
};
|
||||
|
||||
enum IndexType
|
||||
enum class IndexType
|
||||
{
|
||||
INDEX_UNSIGNED,
|
||||
INDEX_POST,
|
||||
INDEX_PRE,
|
||||
INDEX_SIGNED, // used in LDP/STP
|
||||
Unsigned,
|
||||
Post,
|
||||
Pre,
|
||||
Signed, // used in LDP/STP
|
||||
};
|
||||
|
||||
enum class ShiftAmount
|
||||
|
Reference in New Issue
Block a user