//===- MatchFinder.h - ------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains the MatchFinder class, which is used to find operations // that match a given matcher. // //===----------------------------------------------------------------------===// #ifndef MLIR_TOOLS_MLIRQUERY_MATCHER_MATCHERFINDER_H #define MLIR_TOOLS_MLIRQUERY_MATCHER_MATCHERFINDER_H #include "MatchersInternal.h" namespace mlir::query::matcher { // MatchFinder is used to find all operations that match a given matcher. class MatchFinder { … }; } // namespace mlir::query::matcher #endif // MLIR_TOOLS_MLIRQUERY_MATCHER_MATCHERFINDER_H