28 bool match(mlir::Operation *op) {
29 using namespace mlir::detail;
30 if (!isa<OpTypes...>(op) || op->getNumOperands() != 2) {
33 bool res = matchOperandOrValueAtIndex(op, 0,
lhsMatcher) &&
36 res = matchOperandOrValueAtIndex(op, 1,
lhsMatcher) &&