FLANG
RegisterOpenMPExtensions.h
1//===- RegisterOpenMPExtensions.h - OpenMP Extension Registration -*- 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 FLANG_OPTIMIZER_OPENMP_SUPPORT_REGISTEROPENMPEXTENSIONS_H_
10#define FLANG_OPTIMIZER_OPENMP_SUPPORT_REGISTEROPENMPEXTENSIONS_H_
11
12namespace mlir {
13class DialectRegistry;
14} // namespace mlir
15
16namespace fir::omp {
17
18void registerOpenMPExtensions(mlir::DialectRegistry &registry);
19
21void registerAttrsExtensions(mlir::DialectRegistry &registry);
22
25void registerTransformationalAttrsDependentDialects(
26 mlir::DialectRegistry &registry);
27
28} // namespace fir::omp
29
30#endif // FLANG_OPTIMIZER_OPENMP_SUPPORT_REGISTEROPENMPEXTENSIONS_H_
Definition AbstractConverter.h:29