forked from OSchip/llvm-project
Make OpcodeMask an unsigned long long literal to deal with overflow.
llvm-svn: 128847
This commit is contained in:
parent
2e85396509
commit
418f186a4b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue