1 //===- PtrTypes.h - Pointer types -------------------------------*- C++ -*-===// 2 // 3 // This file is licensed 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 defines the Pointer dialect types. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef MLIR_DIALECT_PTR_IR_PTRTYPES_H 14 #define MLIR_DIALECT_PTR_IR_PTRTYPES_H 15 16 #include "mlir/IR/Types.h" 17 #include "mlir/Interfaces/DataLayoutInterfaces.h" 18 19 #define GET_TYPEDEF_CLASSES 20 #include "mlir/Dialect/Ptr/IR/PtrOpsTypes.h.inc" 21 22 #endif // MLIR_DIALECT_PTR_IR_PTRTYPES_H 23