//===- TestPrintInvalid.cpp - Test printing invalid ops -------------------===// // // 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 pass creates and prints to the standard output an invalid operation and // a valid operation. // //===----------------------------------------------------------------------===// #include "mlir/Dialect/Func/IR/FuncOps.h" #include "mlir/IR/BuiltinOps.h" #include "mlir/Pass/Pass.h" #include "llvm/Support/raw_ostream.h" usingnamespacemlir; namespace { struct TestPrintInvalidPass : public PassWrapper<TestPrintInvalidPass, OperationPass<ModuleOp>> { … }; } // namespace namespace mlir { void registerTestPrintInvalidPass() { … } } // namespace mlir