We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f00e1 commit 3883b27Copy full SHA for 3883b27
llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
@@ -222,7 +222,8 @@ struct Recipe_match {
222
return false;
223
224
assert(R->getNumOperands() == std::tuple_size<Ops_t>::value &&
225
- "recipe with matched opcode the expected number of operands");
+ "recipe with matched opcode does not have the expected number of "
226
+ "operands");
227
228
auto IdxSeq = std::make_index_sequence<std::tuple_size<Ops_t>::value>();
229
if (all_of_tuple_elements(IdxSeq, [R](auto Op, unsigned Idx) {
0 commit comments