ArmCommon: Mark NO_COND as constexpr
Allows it to be used in compile-time expressions if ever necessary.
This commit is contained in:
parent
c9711a5eca
commit
e45aa019ec
|
@ -26,4 +26,4 @@ enum CCFlags
|
||||||
CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same
|
CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same
|
||||||
CC_LO = CC_CC, // Alias of CC_CC Unsigned lower
|
CC_LO = CC_CC, // Alias of CC_CC Unsigned lower
|
||||||
};
|
};
|
||||||
const u32 NO_COND = 0xE0000000;
|
constexpr u32 NO_COND = 0xE0000000;
|
||||||
|
|
Loading…
Reference in New Issue