1*14c92070SAlex Zinenko //===- PythonTestCAPI.cpp - C API for the PythonTest dialect --------------===//
2*14c92070SAlex Zinenko //
3*14c92070SAlex Zinenko // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*14c92070SAlex Zinenko // See https://llvm.org/LICENSE.txt for license information.
5*14c92070SAlex Zinenko // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*14c92070SAlex Zinenko //
7*14c92070SAlex Zinenko //===----------------------------------------------------------------------===//
8*14c92070SAlex Zinenko 
9*14c92070SAlex Zinenko #include "PythonTestCAPI.h"
10*14c92070SAlex Zinenko #include "PythonTestDialect.h"
11*14c92070SAlex Zinenko #include "mlir/CAPI/Registration.h"
12*14c92070SAlex Zinenko 
13*14c92070SAlex Zinenko MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(PythonTest, python_test,
14*14c92070SAlex Zinenko                                       python_test::PythonTestDialect)
15