projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4662a9f
)
Make OpcodeMask an unsigned long long literal to deal with overflow.
author
Joerg Sonnenberger
<joerg@bec.de>
Mon, 4 Apr 2011 21:38:17 +0000
(21:38 +0000)
committer
Joerg Sonnenberger
<joerg@bec.de>
Mon, 4 Apr 2011 21:38:17 +0000
(21:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128847
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86InstrInfo.h
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86InstrInfo.h
b/lib/Target/X86/X86InstrInfo.h
index 39448cabb4999fe0ac9dc4a4e8982abe3163b27c..4625b4c986ab1f977ddbd88d41b92e0445bfb0f0 100644
(file)
--- a/
lib/Target/X86/X86InstrInfo.h
+++ b/
lib/Target/X86/X86InstrInfo.h
@@
-449,7
+449,7
@@
namespace X86II {
SSEDomainShift = SegOvrShift + 2,
OpcodeShift = SSEDomainShift + 2,
- OpcodeMask = 0xFF << OpcodeShift,
+ OpcodeMask = 0xFF
ULL
<< OpcodeShift,
//===------------------------------------------------------------------===//
/// VEX - The opcode prefix used by AVX instructions