1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Silencing an MSVC11 type conversion warning.

llvm-svn: 187727
This commit is contained in:
Aaron Ballman 2013-08-05 13:47:03 +00:00
parent 186358278d
commit 5633b24d1d

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) {