Silencing an MSVC11 type conversion warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187727 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Aaron Ballman 2013-08-05 13:47:03 +00:00
parent 48d7d1d231
commit 2a37c7e9e6

View File

@ -5642,7 +5642,7 @@ X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
break;
}
if (cast<ConstantSDNode>(In)->getZExtValue())
Immediate |= (1 << idx);
Immediate |= (1ULL << idx);
}
if (AllContants) {