brintos

brintos / llvm-project-archived public Read only

0
0
Text · 838 B · 252da02 Raw
27 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef OPTMIZER_CODEGEN_PASSDETAIL_H10#define OPTMIZER_CODEGEN_PASSDETAIL_H11 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_DECL22#include "flang/Optimizer/CodeGen/CGPasses.h.inc"23 24} // namespace fir25 26#endif // OPTMIZER_CODEGEN_PASSDETAIL_H27