Make OpcodeMask an unsigned long long literal to deal with overflow.

llvm-svn: 128847
This commit is contained in:
Joerg Sonnenberger 2011-04-04 21:38:17 +00:00
parent 2e85396509
commit 418f186a4b
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ namespace X86II {
SSEDomainShift = SegOvrShift + 2,
OpcodeShift = SSEDomainShift + 2,
OpcodeMask = 0xFF << OpcodeShift,
OpcodeMask = 0xFFULL << OpcodeShift,
//===------------------------------------------------------------------===//
/// VEX - The opcode prefix used by AVX instructions