mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue