//===- TestOperationEquals.cpp - Passes to test OperationEquivalence ------===// // // 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 // //===----------------------------------------------------------------------===// #include "mlir/IR/BuiltinOps.h" #include "mlir/Pass/Pass.h" usingnamespacemlir; namespace { /// This pass illustrates the IR def-use chains through printing. struct TestOperationEqualPass : public PassWrapper<TestOperationEqualPass, OperationPass<ModuleOp>> { … }; } // namespace namespace mlir { void registerTestOperationEqualPass() { … } } // namespace mlir