1//===-- CGOps.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// Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef OPTIMIZER_CODEGEN_CGOPS_H
14#define OPTIMIZER_CODEGEN_CGOPS_H
15
16#include "flang/Optimizer/Dialect/FIRType.h"
17#include "mlir/Dialect/Func/IR/FuncOps.h"
18
19#define GET_OP_CLASSES
20#include "flang/Optimizer/CodeGen/CGOps.h.inc"
21
22#endif
23

source code of flang/lib/Optimizer/CodeGen/CGOps.h