From c775e318677b6655ad5e9d06b67b74f50d5b9816 Mon Sep 17 00:00:00 2001 From: Ahmed Bougacha Date: Thu, 28 Apr 2016 14:36:07 +0000 Subject: [PATCH] [InstCombine] Remove trailing whitespace. NFC. r267873. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267887 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }