mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-24 14:33:40 +00:00
[lanai] Use const instead of constexpr
The windows build bot did not like constexpr. llvm-svn: 279517
This commit is contained in:
parent
5de866bfba
commit
c6f0b33662
@ -43,8 +43,8 @@ enum AluCode {
|
||||
|
||||
// Bits indicating post- and pre-operators should be tested and set using Is*
|
||||
// and Make* utility functions
|
||||
constexpr int Lanai_PRE_OP = 0x40;
|
||||
constexpr int Lanai_POST_OP = 0x80;
|
||||
const int Lanai_PRE_OP = 0x40;
|
||||
const int Lanai_POST_OP = 0x80;
|
||||
|
||||
inline static unsigned encodeLanaiAluCode(unsigned AluOp) {
|
||||
unsigned const OP_ENCODING_MASK = 0x07;
|
||||
|
Loading…
x
Reference in New Issue
Block a user