blob: c6419aad9b379bedf380a61f3d2f840ffaa12448 [file] [log] [blame]
Eric Schweitz97d89722021-02-26 02:44:021//===-- 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"
River Riddle23aa5a72022-02-26 22:49:5417#include "mlir/Dialect/Func/IR/FuncOps.h"
Eric Schweitz97d89722021-02-26 02:44:0218
19using namespace mlir;
20
21#define GET_OP_CLASSES
22#include "flang/Optimizer/CodeGen/CGOps.h.inc"
23
24#endif