mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
X86: silence a GCC warning
GCC 4.9 gives the following warning: warning: enumeral and non-enumeral type in conditional expression Cast the enumeral value to an integer within the ternary operation. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227692 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
96a563ccfa
commit
7708f5b68a
@ -429,6 +429,6 @@ void DecodeScalarMoveMask(MVT VT, bool IsLoad, SmallVectorImpl<int> &Mask) {
|
|||||||
unsigned NumElts = VT.getVectorNumElements();
|
unsigned NumElts = VT.getVectorNumElements();
|
||||||
Mask.push_back(NumElts);
|
Mask.push_back(NumElts);
|
||||||
for (unsigned i = 1; i < NumElts; i++)
|
for (unsigned i = 1; i < NumElts; i++)
|
||||||
Mask.push_back(IsLoad ? SM_SentinelZero : i);
|
Mask.push_back(IsLoad ? static_cast<int>(SM_SentinelZero) : i);
|
||||||
}
|
}
|
||||||
} // llvm namespace
|
} // llvm namespace
|
||||||
|
Loading…
Reference in New Issue
Block a user