blob: 3ffa57ab575ffa14eb133925c69aa448470f55d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===- OPENMP.cpp - C Interface for OPENMP dialect
//------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "mlir-c/Dialect/OpenMP.h"
#include "mlir/CAPI/Registration.h"
#include "mlir/Dialect/OpenMP/OpenMPDialect.h"
using namespace mlir;
MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(OpenMP, omp, omp::OpenMPDialect)
|