We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3804663 commit 0b99a8aCopy full SHA for 0b99a8a
lib/Target/Lanai/LanaiAluCode.h
@@ -43,8 +43,8 @@ enum AluCode {
43
44
// Bits indicating post- and pre-operators should be tested and set using Is*
45
// and Make* utility functions
46
-constexpr int Lanai_PRE_OP = 0x40;
47
-constexpr int Lanai_POST_OP = 0x80;
+const int Lanai_PRE_OP = 0x40;
+const int Lanai_POST_OP = 0x80;
48
49
inline static unsigned encodeLanaiAluCode(unsigned AluOp) {
50
unsigned const OP_ENCODING_MASK = 0x07;
0 commit comments