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 f1a0443 commit eb88d09Copy full SHA for eb88d09
llvm/lib/Transforms/Vectorize/VPlanPatternMatch.h
@@ -462,6 +462,12 @@ m_LastActiveLane(const Op0_t &Op0) {
462
return m_VPInstruction<VPInstruction::LastActiveLane>(Op0);
463
}
464
465
+template <typename Op0_t>
466
+inline VPInstruction_match<VPInstruction::Reverse, Op0_t>
467
+m_Reverse(const Op0_t &Op0) {
468
+ return m_VPInstruction<VPInstruction::Reverse>(Op0);
469
+}
470
+
471
inline VPInstruction_match<VPInstruction::StepVector> m_StepVector() {
472
return m_VPInstruction<VPInstruction::StepVector>();
473
0 commit comments