x64Emitter: Make FloatOp and NormalOp enum classes

Reduces the amount of identifiers placed in the Gen namespace internally.
This commit is contained in:
Lioncash
2018-03-18 17:20:46 -04:00
parent c22a6f4551
commit 975ba4abf0
2 changed files with 57 additions and 54 deletions

View File

@ -91,8 +91,8 @@ enum SSECompare
};
class XEmitter;
enum FloatOp : int;
enum NormalOp : int;
enum class FloatOp;
enum class NormalOp;
// Information about a generated MOV op
struct MovInfo final