Fix inelegant initialization.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineCalls.cpp
index 344fc4ffd8aaa8d790a732740e67545babf3de95..fbbc9520cf983c3a7ca78f9ca3e530de8ac74fc4 100644 (file)
@@ -598,8 +598,7 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) {
     unsigned VWidth =
       cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
     unsigned LowHalfElts = VWidth / 2;
-    APInt InputDemandedElts(VWidth, 0);
-    InputDemandedElts = InputDemandedElts.getBitsSet(VWidth, 0, LowHalfElts);
+    APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
     APInt UndefElts(VWidth, 0);
     if (Value *TmpV = SimplifyDemandedVectorElts(II->getArgOperand(0),
                                                  InputDemandedElts,