xref: /llvm-project/flang/include/flang/Optimizer/Dialect/FortranVariableInterface.h (revision a621e799168ff6e57c27a49e6badd40b16bc44a8)
1 //===- FortranVariableInterface.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 // This file contains a set of interfaces for operations defining Fortran
10 // variables.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef FORTRAN_OPTIMIZER_DIALECT_FORTRANVARIABLEINTERFACE_H
15 #define FORTRAN_OPTIMIZER_DIALECT_FORTRANVARIABLEINTERFACE_H
16 
17 #include "flang/Optimizer/Dialect/FIRAttr.h"
18 #include "flang/Optimizer/Dialect/FIRType.h"
19 #include "mlir/IR/BuiltinTypes.h"
20 #include "mlir/IR/OpDefinition.h"
21 
22 #include "flang/Optimizer/Dialect/FortranVariableInterface.h.inc"
23 
24 #endif // FORTRAN_OPTIMIZER_DIALECT_FORTRANVARIABLEINTERFACE_H
25