]> granicus.if.org Git - llvm/commitdiff
[IR] Fix a typo in a comment. NFC
authorCraig Topper <craig.topper@gmail.com>
Tue, 11 Apr 2017 06:41:55 +0000 (06:41 +0000)
committerCraig Topper <craig.topper@gmail.com>
Tue, 11 Apr 2017 06:41:55 +0000 (06:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299918 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/Constants.cpp

index 533b9245277f2eb73c1ede3e9adf79669dca34b8..c5f93c9f4db018aeba731798482a32a746cfb775 100644 (file)
@@ -1027,7 +1027,7 @@ Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
     return getSequenceIfElementsMatch<ConstantDataVector>(C, V);
 
   // Otherwise, the element type isn't compatible with ConstantDataVector, or
-  // the operand list constants a ConstantExpr or something else strange.
+  // the operand list contains a ConstantExpr or something else strange.
   return nullptr;
 }