mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 23:50:00 +01:00
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:
parent
2d3aa9b8fb
commit
06ec6ab0da
@ -6,8 +6,6 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "common/common_types.h"
|
|
||||||
|
|
||||||
namespace Dynarmic::IR {
|
namespace Dynarmic::IR {
|
||||||
|
|
||||||
enum class Cond {
|
enum class Cond {
|
||||||
@ -15,8 +13,4 @@ enum class Cond {
|
|||||||
HS = CS, LO = CC,
|
HS = CS, LO = CC,
|
||||||
};
|
};
|
||||||
|
|
||||||
inline Cond invert(Cond c) {
|
|
||||||
return static_cast<Cond>(static_cast<size_t>(c) ^ 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Dynarmic::IR
|
} // namespace Dynarmic::IR
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user