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 "mlir/Pass/Pass.h"
13
14namespace fir {
15
16#define GEN_PASS_DECL
17#include "flang/Optimizer/CodeGen/CGPasses.h.inc"
18
19} // namespace fir
20
21#endif // OPTMIZER_CODEGEN_PASSDETAIL_H
Definition AbstractConverter.h:37