Silencing a 32-bit to 64-bit implicit conversion warning; NFC.

llvm-svn: 254302
This commit is contained in:
Aaron Ballman 2015-11-30 14:52:33 +00:00
parent 4809b1dca1
commit 33c95f08b0
1 changed files with 1 additions and 1 deletions

View File

@ -6431,7 +6431,7 @@ X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
SmallVector<SDValue, 8> V(NumElems);
if (NumElems == 4 && NumZero > 0) {
for (unsigned i = 0; i < 4; ++i) {
bool isZero = !(NonZeros & (1 << i));
bool isZero = !(NonZeros & (1ULL << i));
if (isZero)
V[i] = getZeroVector(VT, Subtarget, DAG, dl);
else