aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2016-06-11 08:02:01 +0000
committerChandler Carruth <chandlerc@gmail.com>2016-06-11 08:02:01 +0000
commit306e270b83a238eb66ed302b9530d1e48a41017a (patch)
treed5647a06fb18cae0c824cfbb64c794921b2968b3 /llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
parent3ecbd9d2876867795bf5a0ba7710869bee3a6040 (diff)
downloadllvm-306e270b83a238eb66ed302b9530d1e48a41017a.zip
llvm-306e270b83a238eb66ed302b9530d1e48a41017a.tar.gz
llvm-306e270b83a238eb66ed302b9530d1e48a41017a.tar.bz2
Compare to an unsigned literal to avoid a -Wsign-compare warning.
llvm-svn: 272459
Diffstat (limited to 'llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp')
-rw-r--r--llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp b/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
index f4a3461..a0b64e7 100644
--- a/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
+++ b/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
@@ -207,7 +207,7 @@ void DecodeVPERMIL2PMask(const Constant *C, unsigned M2Z, unsigned ElSize,
// 10b 1 Zero.
// 11b 0 Zero.
// 11b 1 Source selected by Selector index.
- if ((M2Z & 0x2) != 0 && MatchBit != (M2Z & 0x1)) {
+ if ((M2Z & 0x2) != 0u && MatchBit != (M2Z & 0x1)) {
ShuffleMask.push_back(SM_SentinelZero);
continue;
}