21 lines
902 B
C++
21 lines
902 B
C++
//===-- Optimizer/Support/InitFIR.cpp -------------------------------------===//
|
|
//
|
|
// 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 "flang/Optimizer/Support/InitFIR.h"
|
|
#include "mlir/Target/LLVMIR/Dialect/LLVMIR/LLVMToLLVMIRTranslation.h"
|
|
#include "mlir/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.h"
|
|
|
|
void fir::support::registerLLVMTranslation(mlir::MLIRContext &context) {
|
|
mlir::DialectRegistry registry;
|
|
// Register OpenMP dialect interface here as well.
|
|
mlir::registerOpenMPDialectTranslation(registry);
|
|
// Register LLVM-IR dialect interface.
|
|
registerLLVMDialectTranslation(registry);
|
|
context.appendDialectRegistry(registry);
|
|
}
|