diff --git a/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp b/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp index 3c0a28c4b7f..27e1f24f2ff 100644 --- a/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp +++ b/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp @@ -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; }