frontend/ir/cond: Remove unused invert() function

This is no longer used by anything in the codebase, so it can be
removed.
This commit is contained in:
Lioncash 2019-04-16 21:36:15 -04:00 committed by MerryMage
parent 2d3aa9b8fb
commit 06ec6ab0da

View file

@ -6,8 +6,6 @@
#pragma once
#include "common/common_types.h"
namespace Dynarmic::IR {
enum class Cond {
@ -15,8 +13,4 @@ enum class Cond {
HS = CS, LO = CC,
};
inline Cond invert(Cond c) {
return static_cast<Cond>(static_cast<size_t>(c) ^ 1);
}
} // namespace Dynarmic::IR