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 8204931 commit 6d8209aCopy full SHA for 6d8209a
llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
@@ -221,8 +221,9 @@ struct Recipe_match {
221
if ((!matchRecipeAndOpcode<RecipeTys>(R) && ...))
222
return false;
223
224
- assert(R->getNumOperands() == std::tuple_size<Ops_t>::value &&
225
- "recipe with matched opcode the expected number of operands");
+ assert(
+ R->getNumOperands() == std::tuple_size<Ops_t>::value &&
226
+ "recipe with matched opcode without the expected number of 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