//===- TestPrintDefUse.cpp - Passes to illustrate the IR def-use chains ---===// // // 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 TestPrintDefUsePass : public PassWrapper<TestPrintDefUsePass, OperationPass<>> { … }; } // namespace namespace mlir { void registerTestPrintDefUsePass() { … } } // namespace mlir