mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 20:42:07 +00:00
Arm64Emitter: Convert IndexType to enum class
This commit is contained in:
parent
aba179e4ba
commit
70c54065ab
14 changed files with 267 additions and 259 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue