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/FIRAttr.h" 17 #include "flang/Optimizer/Dialect/FIRType.h" 18 #include "mlir/Dialect/Func/IR/FuncOps.h" 19 20 #define GET_OP_CLASSES 21 #include "flang/Optimizer/CodeGen/CGOps.h.inc" 22 23 #endif 24