Eric Schweitz | 97d8972 | 2021-02-26 02:44:02 | [diff] [blame] | 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" |
River Riddle | 23aa5a7 | 2022-02-26 22:49:54 | [diff] [blame^] | 17 | #include "mlir/Dialect/Func/IR/FuncOps.h" |
Eric Schweitz | 97d8972 | 2021-02-26 02:44:02 | [diff] [blame] | 18 | |
| 19 | using namespace mlir; |
| 20 | |
| 21 | #define GET_OP_CLASSES |
| 22 | #include "flang/Optimizer/CodeGen/CGOps.h.inc" |
| 23 | |
| 24 | #endif |