1*e7db8408SNicolas Vasilache //===- Async.cpp - C Interface for Async dialect --------------------------===// 2*e7db8408SNicolas Vasilache // 3*e7db8408SNicolas Vasilache // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*e7db8408SNicolas Vasilache // See https://llvm.org/LICENSE.txt for license information. 5*e7db8408SNicolas Vasilache // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*e7db8408SNicolas Vasilache // 7*e7db8408SNicolas Vasilache //===----------------------------------------------------------------------===// 8*e7db8408SNicolas Vasilache 9*e7db8408SNicolas Vasilache #include "mlir/Dialect/Async/IR/Async.h" 10*e7db8408SNicolas Vasilache #include "mlir-c/Dialect/Async.h" 11*e7db8408SNicolas Vasilache #include "mlir/CAPI/Registration.h" 12*e7db8408SNicolas Vasilache 13*e7db8408SNicolas Vasilache MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(Async, async, mlir::async::AsyncDialect) 14