xref: /llvm-project/mlir/lib/CAPI/Dialect/OpenMP.cpp (revision 2b664d678dcd6b23eda992b45d009788e34ea8f1)
1*2b664d67Smax //===- OPENMP.cpp - C Interface for OPENMP dialect
2*2b664d67Smax //------------------------------===//
3*2b664d67Smax //
4*2b664d67Smax // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5*2b664d67Smax // See https://llvm.org/LICENSE.txt for license information.
6*2b664d67Smax // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7*2b664d67Smax //
8*2b664d67Smax //===----------------------------------------------------------------------===//
9*2b664d67Smax 
10*2b664d67Smax #include "mlir-c/Dialect/OpenMP.h"
11*2b664d67Smax #include "mlir/CAPI/Registration.h"
12*2b664d67Smax #include "mlir/Dialect/OpenMP/OpenMPDialect.h"
13*2b664d67Smax 
14*2b664d67Smax using namespace mlir;
15*2b664d67Smax 
16*2b664d67Smax MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(OpenMP, omp, omp::OpenMPDialect)
17