From cd0241d19a99b744865b574a16e2744fe01eaa24 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 11 Apr 2017 06:41:55 +0000 Subject: [PATCH] [IR] Fix a typo in a comment. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299918 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/Constants.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/IR/Constants.cpp b/lib/IR/Constants.cpp index 533b9245277..c5f93c9f4db 100644 --- a/lib/IR/Constants.cpp +++ b/lib/IR/Constants.cpp @@ -1027,7 +1027,7 @@ Constant *ConstantVector::getImpl(ArrayRef V) { return getSequenceIfElementsMatch(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; }