//===- TestPrintNesting.cpp - Passes to illustrate the IR nesting ---------===// // // 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 nesting through printing. struct TestPrintNestingPass : public PassWrapper<TestPrintNestingPass, OperationPass<>> { … }; } // namespace namespace mlir { void registerTestPrintNestingPass() { … } } // namespace mlir