mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-24 07:35:04 +00:00
Make OpcodeMask an unsigned long long literal to deal with overflow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128847 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4662a9f270
commit
c15a91dfc8
@ -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…
x
Reference in New Issue
Block a user