Skip to content

Commit 3883b27

Browse files
authored
[VPlan] Fix typo in assertion. NFC (#137009)
1 parent a2f00e1 commit 3883b27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ struct Recipe_match {
222222
return false;
223223

224224
assert(R->getNumOperands() == std::tuple_size<Ops_t>::value &&
225-
"recipe with matched opcode the expected number of operands");
225+
"recipe with matched opcode does not have the expected number of "
226+
"operands");
226227

227228
auto IdxSeq = std::make_index_sequence<std::tuple_size<Ops_t>::value>();
228229
if (all_of_tuple_elements(IdxSeq, [R](auto Op, unsigned Idx) {

0 commit comments

Comments
 (0)