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:
Francois Pichet 2011-05-25 15:58:10 +00:00
parent 33dacdfe66
commit 58b09c9366
1 changed files with 1 additions and 1 deletions

View File

@ -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