[llvm] d59ae12 - [InstCombine] fix typo; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 31 06:06:34 PDT 2021
Author: Sanjay Patel
Date: 2021-08-31T09:02:14-04:00
New Revision: d59ae12d585cf6fa001476fad29bd931587f94f7
URL: https://github.com/llvm/llvm-project/commit/d59ae12d585cf6fa001476fad29bd931587f94f7
DIFF: https://github.com/llvm/llvm-project/commit/d59ae12d585cf6fa001476fad29bd931587f94f7.diff
LOG: [InstCombine] fix typo; NFC
Added:
Modified:
llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp b/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
index 7a4a80d7f440e..38f2c9a60205f 100644
--- a/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
@@ -921,7 +921,7 @@ Instruction *InstCombinerImpl::foldAggregateConstructionIntoAggregateReuse(
"We don't store nullptr in SourceAggregate!");
assert((Describe(SourceAggregate) == AggregateDescription::Found) ==
(I.index() != 0) &&
- "SourceAggregate should be valid after the the first element,");
+ "SourceAggregate should be valid after the first element,");
// For this element, is there a plausible source aggregate?
// FIXME: we could special-case undef element, IFF we know that in the
More information about the llvm-commits
mailing list