[InstCombine] Remove trailing whitespace. NFC.

r267873.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267887 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ahmed Bougacha 2016-04-28 14:36:07 +00:00
parent fa0eab1450
commit c775e31867

View File

@ -786,7 +786,7 @@ Value *InstCombiner::SimplifyDemandedUseBits(Value *V, APInt DemandedMask,
if (DemandedElts == 0)
return ConstantInt::getNullValue(VTy);
// We know that the upper bits are set to zero.
// We know that the upper bits are set to zero.
KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - ArgWidth);
return nullptr;
}