a64_get_set_elimination_pass: Make TrackingType enum an enum class

Prevents placing single letter enum members into the surrounding scope.
This commit is contained in:
Lioncash 2018-04-03 00:49:50 -04:00 committed by Merry
parent 748f624fe8
commit d56bed53e6

View File

@ -19,7 +19,7 @@ namespace Dynarmic::Optimization {
void A64GetSetElimination(IR::Block& block) {
using Iterator = IR::Block::iterator;
enum TrackingType {
enum class TrackingType {
W, X,
S, D, Q,
SP, NZCV,