ArmCommon: Mark NO_COND as constexpr

Allows it to be used in compile-time expressions if ever necessary.
This commit is contained in:
Lioncash 2020-12-30 20:54:03 -05:00
parent c9711a5eca
commit e45aa019ec
1 changed files with 1 additions and 1 deletions

View File

@ -26,4 +26,4 @@ enum CCFlags
CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same
CC_LO = CC_CC, // Alias of CC_CC Unsigned lower
};
const u32 NO_COND = 0xE0000000;
constexpr u32 NO_COND = 0xE0000000;