[llvm] r261484 - fix inaccurate comment; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 21 09:33:32 PST 2016


Author: spatel
Date: Sun Feb 21 11:33:31 2016
New Revision: 261484

URL: http://llvm.org/viewvc/llvm-project?rev=261484&view=rev
Log:
fix inaccurate comment; NFC

Modified:
    llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp

Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp?rev=261484&r1=261483&r2=261484&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp Sun Feb 21 11:33:31 2016
@@ -61,8 +61,7 @@ static Type *reduceToSingleValueType(Typ
 }
 
 /// Return a constant boolean vector that has true elements in all positions
-/// where the input constant integer vector has an element with the sign bit
-/// set.
+/// where the input constant data vector has an element with the sign bit set.
 static Constant *getNegativeIsTrueBoolVec(ConstantDataVector *V) {
   SmallVector<Constant *, 32> BoolVec;
   IntegerType *BoolTy = Type::getInt1Ty(V->getContext());




More information about the llvm-commits mailing list