diff options
author | Sanjay Patel <spatel@rotateright.com> | 2016-02-21 17:33:31 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2016-02-21 17:33:31 +0000 |
commit | 2440130437320c9671f842a933548a57dbaf5184 (patch) | |
tree | 5893741b9d2f02bbdce947a46d1a7ec5c2f6aac9 /llvm/lib/Transforms | |
parent | 368ac5dbf756cfb849d9dd63336ccbb12555b9f1 (diff) | |
download | bcm5719-llvm-2440130437320c9671f842a933548a57dbaf5184.tar.gz bcm5719-llvm-2440130437320c9671f842a933548a57dbaf5184.zip |
fix inaccurate comment; NFC
llvm-svn: 261484
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index eaa1df71af3..249553aed27 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -61,8 +61,7 @@ static Type *reduceToSingleValueType(Type *T) { } /// 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()); |