1 //===- PassDetail.h - Async Pass class details ------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef DIALECT_ASYNC_TRANSFORMS_PASSDETAIL_H_ 10 #define DIALECT_ASYNC_TRANSFORMS_PASSDETAIL_H_ 11 12 #include "mlir/IR/Dialect.h" 13 #include "mlir/Pass/Pass.h" 14 15 namespace mlir { 16 17 namespace async { 18 class AsyncDialect; 19 } // namespace async 20 21 namespace scf { 22 class SCFDialect; 23 } // namespace scf 24 25 #define GEN_PASS_CLASSES 26 #include "mlir/Dialect/Async/Passes.h.inc" 27 28 } // namespace mlir 29 30 #endif // DIALECT_ASYNC_TRANSFORMS_PASSDETAIL_H_ 31