forked from OSchip/llvm-project
Fix MSVC warning: "is out of range for enum constant"
MSVC doesn't support 64 bit enum. OpcodeMask is not used anywhere in the code base. llvm-svn: 132057
This commit is contained in:
parent
33dacdfe66
commit
58b09c9366
|
@ -449,7 +449,7 @@ namespace X86II {
|
|||
SSEDomainShift = SegOvrShift + 2,
|
||||
|
||||
OpcodeShift = SSEDomainShift + 2,
|
||||
OpcodeMask = 0xFFULL << OpcodeShift,
|
||||
OpcodeMask = 0xFFUL << OpcodeShift,
|
||||
|
||||
//===------------------------------------------------------------------===//
|
||||
/// VEX - The opcode prefix used by AVX instructions
|
||||
|
|
Loading…
Reference in New Issue