FLANG
MIFOpConversion.h
1//===------- Optimizer/Transforms/MIFOpToLLVMConversion.h -------*- 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 FORTRAN_OPTIMIZER_TRANSFORMS_MIFOPCONVERSION_H_
10#define FORTRAN_OPTIMIZER_TRANSFORMS_MIFOPCONVERSION_H_
11
12#include "mlir/Conversion/LLVMCommon/Pattern.h"
13#include "mlir/Pass/Pass.h"
14#include "mlir/Pass/PassRegistry.h"
15
16namespace fir {
18}
19
20namespace mif {
21
23void populateMIFOpConversionPatterns(mlir::RewritePatternSet &patterns);
24
25} // namespace mif
26
27#endif // FORTRAN_OPTIMIZER_TRANSFORMS_MIFOPCONVERSION_H_
Definition TypeConverter.h:50
Definition AbstractConverter.h:34