FLANG
PassDetail.h
1//===- PassDetail.h - Optimizer code gen Pass class details -----*- 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 OPTMIZER_CODEGEN_PASSDETAIL_H
10#define OPTMIZER_CODEGEN_PASSDETAIL_H
11
12#include "flang/Optimizer/Dialect/FIRDialect.h"
13#include "mlir/Dialect/LLVMIR/LLVMDialect.h"
14#include "mlir/Dialect/OpenMP/OpenMPDialect.h"
15#include "mlir/IR/BuiltinDialect.h"
16#include "mlir/Pass/Pass.h"
17#include "mlir/Pass/PassRegistry.h"
18
19namespace fir {
20
21#define GEN_PASS_CLASSES
22#include "flang/Optimizer/CodeGen/CGPasses.h.inc"
23
24} // namespace fir
25
26#endif // OPTMIZER_CODEGEN_PASSDETAIL_H
Definition: AbstractConverter.h:31